Custom Permalinks Generated But Not Redirected
-
In enabled custom permalinks in my Settings area. The string I used was:
/%year%/%monthnum%/%day%/%postname%/
The links generated were, predictably,
https://mysubdomain.mydomain.com/2010/5/15/freeble/fooble/65/
Or some such. That’s what I would have expected. Now, in my .htaccess, the complete text is:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
The problem is that while the URL is as desired, Apache does not seem to be redirecting. I checked and mod_rewrite is installed. What I can see is that a 404 is being issued for the relative pathname. E.g.,
2010/5/15/freeble/fooble/65/
I’m thinking the .htaccess is not being seen at all by Apache. Is there something that’s falling in my blind spot?
Thanks
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘Custom Permalinks Generated But Not Redirected’ is closed to new replies.