Site URL and permalink change issue
-
Hello, after 1 year of activity I’m changing my website url structure a little bit.
I had:
Wordpress URL: https://www.mysite.com/wordpress
Site URL: https://www.mysite.com/wordpress
permalink: /%year%/%monthnum%/%day%/%postname%/Now I changed to:
Wordpress URL: https://www.mysite.com/wordpress
Site URL: https://www.mysite.com
permalink: /%year%/%monthnum%/%day%/%postname%/Everything works fine, google search results are something like:
https://www.mysite.com/wordpress/2014/03/03/my-beautiful-post/
and you’re successfully redirected to:
https://www.mysite.com/2014/03/03/my-beautiful-post/Now I would like to change also my permalink structure to:
/%postname%/But if I do so I get 404 when opening https://www.mysite.com/wordpress/2014/03/03/my-beautiful-post/
Any idea to help me to keep my serp traffic and changing both site URL and permalink structure?
Thank you!
My .htaccess follows:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/wordpress
RewriteRule ^(.*)$ wordpress/$1 [L]
- The topic ‘Site URL and permalink change issue’ is closed to new replies.