开发者

Redirect with htaccess

开发者 https://www.devze.com 2023-02-02 07:57 出处:网络
the url of my site is: http://www.mysite.com/site and I want that requests as http://www.mysite.com/[ANY_NAME]

the url of my site is: http://www.mysite.com/site

and I want that requests as http://www.mysite.com/[ANY_NAME]

are redirected to http://www.mysite.com/site

How do I change the htaccess? Thank's开发者_开发百科 :)


RewriteEngine on
RewriteCond %{REQUEST_URI} !^/site.* # if its not /site
RewriteRule .* http://www.mysite.com/site [R=301,L]

if 'site' is a directory, you have to add a slash / after 'site'

0

精彩评论

暂无评论...
验证码 换一张
取 消