我在.htaccess
。
RewriteEngine On
#1
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L,NC,QSA]
#2
RewriteCond %{HTTP_HOST} ^domain\.com [NC]
RewriteRule ^about$ /about-us [L,R=301]
#3
RewriteCond %{HTTP_HOST} ^otherdomain\.com [NC]
RewriteRule ^catalog$ /products [L,R=301]
由于某些原因,#2
和#3
未被触发。
如果我停用#1
,则#2
和#3
会有效。