我已经很多关于这个问题的红色,但没有解决方案帮助我。我在Apache上安装了一个新的Wordpress。将永久链接结构从默认值(www.domain.com/?p=id)更改为另一个后,wordpress会为每个页面向主页提供404错误。
我已经检查了以下内容:
这是我的默认.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
使用插件&#34;调试这个&#34;,我还可以发现,重写规则总是提供额外的index.php?在开始。例如。 sitemap_index\.xml$
被重新命名为index.php?sitemap=1
我能做什么才能解决问题?默认链接,如www.domain.com/?p=1,但这会杀死我所有的搜索引擎优化。
编辑:安装完成后,还会在自定义永久链接中写入/index.php/%postname%
。但是这个设置也返回404。
答案 0 :(得分:4)
打开此文件
/etc/apache2/apache2.conf
chnage all AllowOverride None to AllowOverride All并重启你的apache 在更新之后,你永久链接结构以发布和更新它。
路径可以与“/etc/apache2/apache2.conf”
不同答案 1 :(得分:0)
转到固定链接设置并将固定链接结构更改为“发布名称”并更新永久链接结构。希望它会有所帮助。