25% OFF!

Use code 25OFFER at checkout.
Sign up Login

How do I automatically redirect visitors to my domain to a subfolder? Print

  • redirect to subfolder, htaccess
  • 10

How do I automatically redirect visitors to my domain to a subfolder?

 

You can redirect visitors to your domain to a subfolder of your choosing using the following example:

RewriteCond %{REQUEST_URI} !^subfolder
RewriteRule ^(.*)$ subfolder/$1 [L]

 

Where "subfolder" in the above code is the name of the subfolder to redirect to.

 

 

 


Was this answer helpful?

« Back