开发者

Redirect with htaccess

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜