I want to rename some pages in my Zope/Plone site and I would like to do a 301 permanent redirect so as not to lose the search engine rankings for the old url's On a normal site I could do this with a htaccess file but on the plone site it doesn't seem to have any effect. I understand that Apache is redirecting the requests to Zope but I want to run my redirect rules before it gets passed on. Is this possible? asked 01 Feb '11, 10:10 espprojects |
There is Redirection Tool which might work for you. If not, then you can do the following:
Just change Note that this should only when you want to redirect one specific URL to a new URL. If you want to do a general redirect, like redirecting your 'www' subdomain to your main domain for SEO purposes, then you should handle that via a static app, as described here: Redirect a Domain with a Static/CGI/PHP App Hope that helps!
permanent link
This answer is marked "community wiki".
answered 01 Feb '11, 10:39 seanf |