Viewing 3 replies - 1 through 3 (of 3 total)
  • Login into wordpress dashboard and go to Settings > Permalinks, select Postname and save changes. Check the URL’s now. If there is still any issue then follow these steps:

    Check .htaccess file under wordpress root. If there is not .htaccess file, create it with the following code but if there is .htaccess file then make sure that it contains the following 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
    Thread Starter webinfo1

    (@webinfo1)

    Thanks Maninder (@emmtoor)!
    It worked!

    All I didn’t have to check the .htaccess files.
    All I did was the first part of your solution
    THank you! You are the man!

    You’re very welcome! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘404 error on ALL Event Pages after UPDATE to 4.6.22’ is closed to new replies.