我开发了一个关于wordpress的网站,我使用Yoast SEO插件(https://wordpress.org/plugins/wordpress-seo/)进行SEO和自定义永久链接(https://wordpress.org/plugins/custom-permalinks/)来自定义我的链接。
现在问题既不是Yoast SEO也不是Google Sitemap能够在我的网站上生成站点地图XML,它会返回404错误。如果我禁用自定义永久链接插件,那么它可以正常工作。
我甚至尝试将我的Yoast SEO插件更改为All in One SEO但问题仍然相同,Sitemap仅在自定义永久链接被禁用时才有效,因为我创建了自定义帖子类型而我必须使用它。
有没有人使用这种组合并解决了这个问题?
此致
Manoj Soni
答案 0 :(得分:0)
如果您使用Yoast SEO插件,他们会在自己的网站上展示如何修复它 - http://kb.yoast.com/article/77-my-sitemap-index-is-giving-a-404-error-what-should-i-do
在Apache服务器上,但请确保将其放在.htacess之前的WordPress代码之前。
# Yoast SEO - XML Sitemap Rewrite Fix
RewriteEngine On
RewriteBase /
RewriteRule ^sitemap_index.xml$ /index.php?sitemap=1 [L]
RewriteRule ^locations.kml$ /index.php?sitemap=wpseo_local_kml [L]
RewriteRule ^geo_sitemap.xml$ /index.php?sitemap=geo [L]
RewriteRule ^([^/]+?)-sitemap([0-9]+)?.xml$ /index.php? sitemap=$1&sitemap_n=$2 [L]
RewriteRule ^([a-z]+)?-?sitemap.xsl$ /index.php?xsl=$1 [L]
# END Yoast SEO - XML Sitemap Rewrite Fix