Permalinks not working
-
I’ve created my permalink structure and added the code into my .htaccess file. “/archives” works. “/archives/year/month” works, but the link to the actual entry doesn’t work.
I even added my own for another page in my site and it works. Here is my .htaccess code:
RewriteEngine On
RewriteBase /
RewriteRule ^archives/?([0-9]{4})?/?([0-9]{1,2})?/?$ /archives.php?year=$1&monthnum=$2 [QSA]
RewriteRule ^archives/category?/?(.*) /archives.php?category_name=$1 [QSA]
RewriteRule ^archives/([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^reading/?(.*) /booklist.php [QSA]Can anyone point me to where the problem is?
- The topic ‘Permalinks not working’ is closed to new replies.