![]() |
Google SEO Plugin XML Sitemap - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Extensions (https://community.mybb.com/forum-201.html) +--- Forum: Plugins (https://community.mybb.com/forum-73.html) +---- Forum: Plugin Support (https://community.mybb.com/forum-72.html) +---- Thread: Google SEO Plugin XML Sitemap (/thread-129447.html) Pages:
1
2
|
Google SEO Plugin XML Sitemap - Alex Stanford - 2012-11-15 I have installed the Google SEO plugin on my forum. But, I am having trouble with the sitemap. Here is the current situation: In the ACP I have the "Sitemap URL scheme" field set to "sitemap-{url}.xml". In the .htaccess file for the forum I have:
When I go to http://techtalkin.com/sitemap-index.xml all seems to look like it is working. But, when you head to the <loc> URLs on that page, you will get a "Sitemap page invalid." error. (e.g. http://techtalkin.com/sitemap-threads.xml?page=1) Any advice would be appreciated. RE: Google SEO Plugin XML Sitemap - frostschutz - 2012-11-16 Do you have two sitemap rules in your .htaccess, with the other coming first and QSA missing? Are you using an Apache clone? It could be a plugin interfering, but the rewrite-free variant ( http://techtalkin.com/misc.php?google_seo_sitemap=threads&page=1 ) works fine as opposed to the rewrite variant ( http://techtalkin.com/sitemap-threads.xml?page=1 ) which does not work. So it seems to be missing the page parameter after the rewrite, but with a rewrite rule as shown above and with Apache (any version I'm familiar with) this is not possible. RE: Google SEO Plugin XML Sitemap - Alex Stanford - 2012-11-16 (2012-11-16, 04:03 AM)frostschutz Wrote: Do you have two sitemap rules in your .htaccess, with the other coming first and QSA missing? Hi frostschutz, First of all, thank you for your insights. We are running Apache/fcgi with Varnish Cache and ModSecurity. I don't suspect it's the server environment, as it is heavily tested with other .htaccess dependent applications. Based on your input it seems likely that another rule in the .htaccess is interfering. Here is the entire .htaccess: EDIT: I quickly removed all rules except the rules labeled "# Google SEO" (and even the first two of those) for testing and the issue persists. It must not be that...
Any ideas? Thanks, Alex RE: Google SEO Plugin XML Sitemap - frostschutz - 2012-11-16 None other than those I already provided. There is nothing wrong with the .htaccess You can work around by removing the sitemap url scheme, so it will use misc.php? directly instead. But chances are that this issue (whatever is causing it) will give you trouble later on elsewhere. RE: Google SEO Plugin XML Sitemap - Alex Stanford - 2012-11-16 (2012-11-16, 04:03 AM)frostschutz Wrote: Do you have two sitemap rules in your .htaccess, with the other coming first and QSA missing? I think I figured it out the cause... This redirect:
Would redirect this request: http://techtalkin.com/sitemap-forums.xml?page=1 To: http://techtalkin.com/misc.php?google_seo_sitemap=forums Which is a broken link. But, if you go to: http://techtalkin.com/misc.php?google_seo_sitemap=forums?page=1 Everything works. If I understand correctly, the problem is that the rewrite rule doesn't append the "?page=X" string to the end of the URL. So, I modified the rule:
But, still no luck... (2012-11-16, 03:42 PM)frostschutz Wrote: None other than those I already provided. There is nothing wrong with the .htaccess I removed the "sitemap-{url).xml" in order to try it without rewrites and now I have a new issue: http://techtalkin.com/misc.php?google_seo_sitemap=index The links are showing up without a value for the google_seo_sitemap paramater, e.g.:
RE: Google SEO Plugin XML Sitemap - frostschutz - 2012-11-16 (2012-11-16, 03:57 PM)Alex Stanford Wrote: This redirect: No, it would go to http://techtalkin.com/misc.php?google_seo_sitemap=forums&page=1 because the rewrite rule is using the QSA option (query string append) which appends any and all parameters given in the original URL. If query string append is broken on your host in general, other basic features such as thread pages, post links, et cetera would all break too. You are not supposed to cover parameters like page or pid or highlight or any combinations thereof in rewrite rules. I couldn't test if those are broken on your forum because I didn't see a thread more than one page long. Quote:I removed the "sitemap-{url).xml" in order to try it without rewrites and now I have a new issue: Then maybe I remembered wrong and you have to put misc.php?google_seo_sitemap={url} as scheme RE: Google SEO Plugin XML Sitemap - Alex Stanford - 2012-11-16 (2012-11-16, 04:05 PM)frostschutz Wrote: Then maybe I remembered wrong and you have to put misc.php?google_seo_sitemap={url} as scheme I didn't think so because it says "If your host does not support mod_rewrite, leave this empty. Your sitemap will then be called misc.php?google_seo_sitemap=index." But, I tried changing the scheme to "misc.php?google_seo_sitemap={url}" and it sort of works: http://techtalkin.com/misc.php?google_seo_sitemap=index The only problem is that it is appending the page query string to the URL via "?" instead of "&" RE: Google SEO Plugin XML Sitemap - frostschutz - 2012-11-16 Now, finally that's a bug I have to fix. Thanks for pointing it out to me. You should still check whatever is going wrong with your rewrites, though! RE: Google SEO Plugin XML Sitemap - Alex Stanford - 2012-11-16 (2012-11-16, 08:07 PM)frostschutz Wrote: Now, finally that's a bug I have to fix. Thanks for pointing it out to me. Can you post a fix for that issue here so that I can patch my copy until you release a version with the fix? RE: Google SEO Plugin XML Sitemap - frostschutz - 2012-11-17 I updated the plugin, you can grab it from GitHub while it's not validated on the mods site. |