goodish Posted April 3, 2015 Share Posted April 3, 2015 (edited) I would like to change in the backoffice canonical url from temporarily 302. When is changed to permanently 301- page is white. Cache is cleared, new robot file...etc. I tried to change through changes in htaccess: (RewriteCond %{HTTP_HOST} !^domain.com$RewriteRule (.*) http://domain.com$1 [R=301,L] - result the same. Any idea? Prestashop 1.6.0.14 Edited April 3, 2015 by goodish (see edit history) Link to comment Share on other sites More sharing options...
goodish Posted April 4, 2015 Author Share Posted April 4, 2015 SOLVED Switched in the backoffice No redirection Add to htaccess: RewriteEngine onOptions +FollowSymLinksRewriteCond %{THE_REQUEST} ^.*/index\.phpRewriteRule ^(.*)index.php$ http://www.mydomain.com/$1 [R=301,L]RewriteCond %{HTTP_HOST} !^www\.mydomain\.comRewriteRule (.*) http://www.mydomain.com/$1 [R=301,L] Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now