Permalinks not working after moving WordPress
-
I’m having trouble with my permalinks. I moved a wordpress site from my local server to a subdirectory called “test” on a remote host (servage.net) and every thing is working fine in terms of connecting to the database I imported, logging into wp-admin and viewing home page, but I get a 404 Not Found page/message when I click on the navigation links. I followed advice on many posts I have seen in the forums here by 1) resetting the permalinks back to “default”, in which case they work fine. But when I reset the permalinks back to the setting I had before (custom: /%postname%/) they still don’t work.
I have also read in these forums that the .htaccess file may be the issue??? here is the content of my htaccess file if this helps:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /test/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test/index.php [L]
</IfModule># END WordPress
Thanks for any advice!
- The topic ‘Permalinks not working after moving WordPress’ is closed to new replies.