我的网站使用非www网址运行,当我在网址中打开任何带有www的内页时,它会将我重定向到主页。
我在顶部的.htacess中进行了以下更改
RewriteCond %{HTTP_HOST} ^www.test.in [NC]
RewriteRule ^(.*)$ http://test.in/$1 [L,R=301]
但没有工作,
我也成立了 从管理员
自动重定向到基本网址为否有人可以给我解决方案,我怎样才能将www重定向到主页和内页的非www网址,而无需将内页重定向到主页
答案 0 :(得分:0)
就像这样
RewriteCond %{HTTP_HOST} ^www.test.in$ [NC]
RewriteRule ^(.*) http://test.in/$1 [L,R=301]
答案 1 :(得分:0)
RewriteCond%{HTTP_HOST} ^ www.test.in [NC] RewriteRule ^(。*)$ http://test.in/ $ 1 [L,R = 301]