upgraded to 2.7 and internal links not working :(
-
I upgraded my wordpress to 2.7 and now none of my “pages” will load. I set the default load page to be static and the default post page to be recent posts… those are the only two links that work. The rest result in the recent posts being called rather then the appropriate link clicked.
my htaccess looks like this
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
RewriteRule ^post/([0-9]+)?/?([0-9]+)?/?$ /index.php?p=$1&page=$2 [QSA]# END WordPress
I have tried it with and without this line
RewriteRule ^post/([0-9]+)?/?([0-9]+)?/?$ /index.php?p=$1&page=$2 [QSA]
I have no idea how to fix this, someone please help ??
website is https://www.designedyesterday.net
thank you
- The topic ‘upgraded to 2.7 and internal links not working :(’ is closed to new replies.