Major problems with permalink structure
-
I know a lot of people have posted about this, but my problems are with 2.0.1 .
Basically, if I set the permalink structure to anything other than the default, every page, including the index, becomes a 404 instead.
I’ve tried recreating the .htaccess, deleting and re-uploading the source, deactivating all the plugins and even double-checked the integrity of the database, but to no avail.
if you want to see the problem, the blog is at https://www.mameworld.net/agemame/ (the Links to Downloads page is my rewritten 404 page, just so that people can still access my content while the site is down.)
I’ve set the page up so that the dump_env output is there for anyone to look at should they want to.
.htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect FeedBurner to your own Feed
RewriteBase /agemame/
RewriteRule ^feedburner_298039/?$ /agemame/feed/ [R,L]
RewriteCond %{HTTP_USER_AGENT} ^FeedBurner.*$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /agemame/index.php [L]
# These Rules redirect all feed Traffic to FeedBurner
RewriteBase /agemame/
RewriteCond %{QUERY_STRING} ^feed=(feed|rdf|rss|rss2|atom)$
RewriteRule ^(.*)$ https://feeds.feedburner.com/AgemameHq [R,L]
RewriteRule ^(feed|rdf|rss|rss2|atom)/?(feed|rdf|rss|rss2|atom)?/?$ https://feeds.feedburner.com/AgemameHq [R,L]
RewriteRule ^wp-(feed|rdf|rss|rss2|atom).php https://feeds.feedburner.com/AgemameHq [R,L]
# These are the standard WordPress Rules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /agemame/index.php [L]
</IfModule># END WordPress
- The topic ‘Major problems with permalink structure’ is closed to new replies.