我有一个子域(看起来像 xxx.yyy.zzz.com),我已经安装了 wordpress 3.6 并将永久链接设置为“日期和名称”,然后创建 .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>
但是当我在首页单击某些页面时,它会返回错误页面,例如:
未找到
在此服务器上找不到请求的 URL /aboutus/。
有什么建议吗?谢谢。