Page 1 of 1

How to hide folders

Posted: Fri May 10, 2024 12:01 pm
by arunas0813
Hello,
can You help and explain how to hide folders in website structure ? folder properties... ? htaccess ?
What is the best way ?
www.host.com/folder/page.html -> www.host.com/page.html

Re: How to hide folders

Posted: Fri May 10, 2024 12:11 pm
by BaconFries
Moved to the following Off Topic Section as unrelated to the use of the software.
htaccess ?
Not tested but you can try adding the following to your htaccess if you have one substituting pages for your own folder name. For further help on the use of .htaccess you should contact your hosting provider.

Code: Select all

RewriteEngine on
RewriteRule ^pages/(.+)$ /$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.+) /pages/$1 [END]