Permalinks on localhost yields 404
-
Hi! I have created a local copy of my wp site onto my local machine to test updated plugins. I have followed the steps from here and so far the site displays the home page.
However, when I click on any of the pages/posts I get “Not Found” errors. I have changed the Permalink structure to Default and it seems to work fine now. However, this defeats the purpose of why I copied the site locally.
I need to make the Permalinks work. (I’m using: /%category%/%postname%/)
.htaccess is configured as:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressAny help anyone could give would be greatly appreciated! Thanks in advance!
- The topic ‘Permalinks on localhost yields 404’ is closed to new replies.