Forums

[Plugin: W3 Total Cache] Post pages not displaying (5 posts)

  1. demode12
    Member
    Posted 3 months ago #

    For some reason anytime I activate this plugin I can't view my post pages I can only view my home page. Has anyone else experienced this issue before.

    Here's a link to my site: http://bit.ly/34XhDb
    Note: Plugin is currently inactive

  2. Frederick Townes
    Member
    Posted 3 months ago #

    It would appear that there's an issue with your .htaccess files, can you paste them.

  3. demode12
    Member
    Posted 3 months ago #

    #DirectoryIndex maintenance.php
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # 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

  4. demode12
    Member
    Posted 3 months ago #

    Thanks in advance for your help

  5. Frederick Townes
    Member
    Posted 3 months ago #

    The above should be replaced with:

    # 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

    So, the following should be removed:

    #DirectoryIndex maintenance.php
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

Reply

You must log in to post.

About this Topic