在wordpress中找不到页面

时间:2012-11-17 10:09:27

标签: wordpress

我已在wordpress folder name内的域中安装了questions,目标网页工作正常,没有其他links工作,其说{{1} }}。该怎么办 ??

使用像.htaccess

page not found

仅运行index.php页面。有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

看起来你需要重写库,因为你的父文件夹上有一个htaccess

RewriteEngine On
RewriteBase /questions/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /questions/ [L]

您是否将此信息放在名为/ questions?

的网站根目录的子文件夹中

如果是,我认为你需要改变

RewriteRule . questions/ [L]

RewriteRule . /questions/ [L]

或尝试此而不是rewritebase

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /questions/ [L]
</IfModule>