• I’m thinking that I would like to change my permalink structure from default http://www.mysite/?p=123 to http://www.mysite/%category%/%postname% for better SEO results (hopefully). But I’m apprehensive about doing this mid-stream – already have a lot of posts & pages in place and I don’t want to screw up all of my links. Can such a change be done safely, or will I have to re-create all of my work under the new permalink option?
    Thanx in advance for your thoughts.
    CR

Viewing 2 replies - 1 through 2 (of 2 total)
  • Yes, you can change your permalinks any time, I did mine after having my site up for about a year with no problems

    Hi,

    You can change and set your desired permalink . If you get 404 error message on old posts then add this code in htaccess:

    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Thanks,

    Shane G.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can I change permalink structure mid-stream?’ is closed to new replies.