htaccess redirect domain to subdirectory without changing URL
- By Preneesh AV --
- 16-Jun-2018 --
- 42 Comments
.htaccess redirect domain to subdirectory without changing URL
You can use this rule:
RewriteCond %{HTTP_HOST} ^(www\.)?domain3\.in$
[NC]RewriteRule !^subdir/ /subdir%{REQUEST_URI} [L,NC]This will prefix every request for domain3.in with /subdir if it is not already there.
