我在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>
问题是当我点击主页面http://www.serversentry.com.au/页面时没有重定向到主页但未找到
虽然其他链接正常工作,请参阅
http://www.serversentry.com.au/testimonials/正常工作..
请指导我
答案 0 :(得分:0)
试试这个 删除IFModule以进行index.php重写,并将主页命名为index.php。它应该工作。