重写.htaccess文件中的规则

时间:2015-12-30 15:26:46

标签: php .htaccess mod-rewrite

在我的.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'?

由于

0 个答案:

没有答案