Reputation: 726
I have this path www.exemple.com
but my website is in www.exemple.com/website/
is it possible that when someone visits www.exemple.com
they are redirected to www.exemple.com/website/
?
Upvotes: 3
Views: 66
Reputation: 786319
In your site root .htaccess have this rule:
RewriteEngine On
RewriteCond %{THE_REQUEST} /website/(\S*) [NC]
RewriteRule ^ /%1? [R=302,L,NE]
RewriteRule !^website/ website%{REQUEST_URI} [L,NC]
Upvotes: 1