我正在尝试将 toast.allthesmarts.com 重定向到 toast.allthesmarts.com/dayone
RewriteEngine on
RewriteCond %{HTTP_HOST} toast.allthesmarts.com
RewriteRule ^(.*)$ http://toast.allthesmarts.com/dayone/ [L,R,QSA]
但这给了我无限循环。我尝试了这个:
RewriteCond %{HTTP_HOST} ^toast.allthesmarts.com$
RewriteCond %{REQUEST_URI} !^/dayone$
RewriteRule ^(.*)$ http://toast.allthesmarts.com/dayone/ [L,R,QSA]
但它不起作用!我已经这样做了很多次了,但今天我的脑袋不灵光了!请帮忙
注意:还有其他网站通过相同的 apache 运行
答案1
更改“RewriteCond %{REQUEST_URI} !^/dayone$”
到 'RewriteCond %{REQUEST_URI} !^/dayone/$'