Permalinks only work with default setting WP 3.1
-
Problem:
If I set the permalinks to anything but the default setting and I want to go to a page based on category, I am redirected to the home page.The Permalink settings page indicates “Permalink structure updated.”
Then I use the sidebar widget to go to https://www.jbizchicago.com/category/blog/ and I am redirected to the home page. But if I use the default settings I can go to https://www.jbizchicago.com/?cat=310When did this occur:
The problem started after I upgraded to 3.iWhat I have tried:
I tried using the 2010 theme
I tried changing permissions on the .HTaccess file
I tried deactivating wpcache.What does the .htaccess file look like?
After changing the settings to a custom structure the code looks like this
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
Options -Indexes
code
Any help would be appreciated.
- The topic ‘Permalinks only work with default setting WP 3.1’ is closed to new replies.