Permalinks broken after moving and updating structure
-
I had a wordpress installation in a subdirectory of my server while I set everything up. While it was in the subdirectory I was able to change my permalink structure and use “pretty” permalinks. When I was all done I followed the instructions on the codex, moving the installation to the root directory and updating the permalink structure. When I went to the site, however, none of my permalinks (posts or pages) worked.
I am extremely confused, because permalinks worked on the same server in a different folder not more than an hour ago. Clearly, mod rewrite and allow override must be turned on on my server.
Here is my htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
- The topic ‘Permalinks broken after moving and updating structure’ is closed to new replies.