我已在wordpress
folder name
内的域中安装了questions
,目标网页工作正常,没有其他links
工作,其说{{1} }}。该怎么办 ??
使用像.htaccess
page not found
仅运行index.php页面。有什么帮助吗?
答案 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>