Hello
If you are facing issue with Permalinks setting in wordpress which gives
404 error in all blog with custom settings like /%year%/%monthnum%/%postname%/
Please check the setting with Wordpress >> setting >> permalink settings
choose the custom setting like
/%year%/%monthnum%/%postname%/
and save the setting. then you will get the following code at the bottom of page , you have to update the code in your .htaccess file where wordpress has been installed.
code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>



Reply With Quote