Status
Not open for further replies.
8 comments
Looks like your permalink is messed up. Try editing permalink from the wp admin panel.

Also make sure you have the .htaccess file on site base directory
 
Delete your current .htaccess file and create one with the following code in it:
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
 
Status
Not open for further replies.
Back
Top