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