【发布时间】:2022-01-27 21:18:16
【问题描述】:
我正在尝试使用 .htaccess 进行这样的重定向:
* -> index.html
/affiliate -> affiliate.html
/ref/* -> ref.html
但问题是,所有链接都被重定向到索引,我怎样才能从这条规则中排除几个链接?
我现在有这个代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
【问题讨论】:
标签: .htaccess mod-rewrite apache2