Redirect to Another Directory in .htaccess
This example shows you how to create redirection o another directory.
It may be useful, for example, when you have a project, placed in sub-directory.
[View All Snippets]
[View All Snippets]
Show Plain Text »
- # Redirect visitors to another directory
- RewriteEngine on
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^([^?]*)$ /sub_dir/index.html [NC,L,QSA]