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
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
It would appear that there's an issue with your .htaccess files, can you paste them.
#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
Thanks in advance for your help
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>You must log in to post.