在我的.htaccess文件中,这段代码存在:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
我认为代码是告诉网站不要在网址路径中包含'index'。但我也想告诉网站将'example.com/'重定向为'example.com'(没有斜杠),以避免重复内容。
如何在.htaccess
文件中包含该规则?
我能不止一次使用'IfModule'?
由于