cant view single blog post
-
The problem:
The site is working fine, pages are working correctly with pretty permalinks. However, when i try to view a single post, it gives me a 404 error.
I have all pages working fine and the actual blog category that i am linking to for my posts shows the summary of the post (excerpt) fine. But it is when i click to view the rest of the post that it displays the 404 error.
Details:
* * I am running WP v2.8.6 to power an entire website; pages, posts, everything.
* * I have given wordpress its own directory /wp/ but i am running it from the root so everything is domain.com/
* * The website is https://www.webrevolve.com
* * All pages are working fine
* * Blog category shows summary of posts (excerpt) fine
* * Single post IS NOT working and displays 404My permalink structure is as follows:
/%category%/%year%/%monthnum%/%postname%/My htaccess file contains:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^webrevolve\.com [NC]
RewriteRule ^(.*) https://www.webrevolve.com/$1 [R=301,L]RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php
RewriteRule (.*) https://www.webrevolve.com/ [R=301,L]
<IfModule mod_security.c>SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
Options -Indexes
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine OnRewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressI have read endless web pages on similar problems and tried to figure out the problem for hours on end. I have contacted my web host to make sure AllowOverride none was on AllowOverride all (which it was). I have tried resaving permalink structure, changing permalink structure, linking to a page that contains posts rather than linking to a category and still have no luck.
If anyone can shed any light on the situation that would be fantastic, i really am stumped on this one and have never come across this problem before. If you need any more details please let me know.
Thanks in advance for any help, much appreciated.
- The topic ‘cant view single blog post’ is closed to new replies.