My wordoress custom permalink suddenly stopped working,i set it like "/%postname%/" (without quote) it only works in default permalink structure.Does any one have the solution? my site http://biggestoffer.com
Check out your .HTACCESS file. CHMOD it 755. Or just edit by yourself. You will get code while you setting custom permalink.
"/%postname%/" this usually gives problems use /%year%/%postname%/ or /%category%/%postname% it will work !
Edit your .htaccess file with this and change the file permission to 0644. this may work # 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
Try to delete your .htaccess. Then go to your wp-admin>Settings>Permalinks then click update. Then try if it's working.
.htaccess handles the PHP mod-rewrite URL's . Whenever you have any similar issues in future , just go to this file and edit it .. Cheerss
Then i edited the .htaccess like this: (default but was missing) 1.# BEGIN WordPress 2.<IfModule mod_rewrite.c> 3.RewriteEngine On 4.RewriteBase / 5.RewriteCond %{REQUEST_FILENAME} !-f 6.RewriteCond %{REQUEST_FILENAME} !-d 7.RewriteRule . /index.php [L] 8.</IfModule> 9.# END WordPress Now /%whatever% works