两次打开mod_rewrite?

时间:2017-11-11 17:55:22

标签: wordpress apache .htaccess mod-rewrite

此代码在我的WordPress .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>

由于RewriteEngine On已经在.htaccess文件中,我是否需要再次添加它以获得更多重定向,因为它在结束</IfModule>?为什么这个重写代码还包含在</IfModule>中?它是否检查mod_rewrite ???

的存在

0 个答案:

没有答案