smuffle89
Member
Posted 2 years ago #
i recently got a new domain and before thinking clearly I immediately changed the permalinks in my settings panel and now everything is all messed up. I have tried the wp article on it.
site: http://www.smuffle.ohpanic.info
when i click on login i am redirected to my new site which is rightfully so. but how do i exactly change my permalinks back to the smuf...ohpanic.info?
Hi,
As your site URL is changes, please check with this article:
http://codex.wordpress.org/Changing_The_Site_URL
Also add this code after settings up your desired permalink structure:
# 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
Now, have a check with old and new posts.
Thanks,
Shane G.
smuffle89
Member
Posted 2 years ago #
where exactly would I add this? My header?