我的wordpress .htaccess文件存在一些问题 . 由于某种原因,它导致网站显示为空白(根本没有显示数据),并且一旦我重命名.htaccess文件夹,索引页面加载但没有其他页面加载(由于重写规则)所以它是一个非常问题 . 我不能没有它,也不能像现在这样生活 .

这是它目前的样子,我设法提取了一些错误文件

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

错误:

[2013年10月5日星期六00:43:55] [11544193] [autoindex:错误] [客户端66.249.74.36:62083] AH01276:无法提供目录/ var / chroot / home / content / 93/115444193 / html / wordpress / :找不到匹配的DirectoryIndex(default.html,default.htm,index.php,index.shtml,index.html,index.htm,home.html,home.htm,index.php5,welcome.html,welcome.htm) ,以及Options指令禁止的服务器生成的目录索引

我不知道如何解决这个问题,所以非常感谢任何帮助 .