Changes between Version 78 and Version 79 of qPloneGoogleSitemaps
- Timestamp:
- Feb 3, 2011 9:09:24 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
qPloneGoogleSitemaps
v78 v79 94 94 ''Answer:'' quintagroup.plonegooglesitemaps uses 'canonical_url' catalog metadata field while building the sitemap.xml. You might get wrong values cataloged when creating sitemap through internal URL. To fix this - login to your Plone site via your site's real URL (''www.plonesite.com'') and update portal_catalog to fix the cataloged values. 95 95 96 -------------------------------- 97 Example: To fix above-mentioned issue - inserting the following line into '''URL processing Regular Expressions''' on a sitemap edit form might help: 96 Also, to fix the above-mentioned issue - insert the following line into '''URL processing Regular Expressions''' on a sitemap edit form: 97 98 {{{ 99 s/[you_site\/internal\/path]/[domain]/ 100 }}} 101 102 where ''[you_site\/internal\/path]'' - is URL via which you edit your site, and ''[domain]'' - is site production URL. 103 104 For example, for our site ''http://quintagroup.com'' we use ''!http://www.quinta.qg:8080/www/www URL'', so, to configure right sitemap URLs we insert: 98 105 99 106 {{{ … … 101 108 }}} 102 109 103 where ''!http://www.quinta.qg:8080/www/www'' - management URL, ''http://quintagroup.com'' - production URL104 110