• My current permalink setup is /%category%/%postname%/ but I want to change it to /%postname%/. Is there a way to make all the old permalinks that someone might have on their sites still work ?

Viewing 1 replies (of 1 total)
  • Thread Starter lifeisrisky

    (@lifeisrisky)

    Here is my current .htaccess file and I have tried everything to make it work but so far no joy.

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^lifeisrisky.com [nc]
    RewriteRule (.*) http://www.lifeisrisky.com/$1 [R=301,L]
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    </IfModule>
    
    # END WordPress
Viewing 1 replies (of 1 total)
  • The topic ‘Changing Permalinks question’ is closed to new replies.