Permalink on localhost issues
I think I should ask the issue here as well for better chance getting the answer.
there are numbers of related posts, but NONE of them got any proper answer!
http://forums.appthemes.com/help-usi...-16796/page-2/
http://forums.appthemes.com/classipr...calhost-17877/
Setting
my project is saved under
localhost/~myname/classipress/
and my htaccess looks like:
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~myname/classipress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /~myname/classipress/index.php [L]
</IfModule>
The Problem is:
when using custom permalink like this:
Permalink:/%postname%/ or /%postname%-%post_id%/
None of the page will work except the index
when just using the default permalink like
all the ad and blog will work, but ALL of the links that with Global Path Variables will remain broke (404 not found)
NOTE:
It is NOT the apache mod_rewrite module enable/disbale problem. It's been setup correctly and in my apache config file I already made AllowOverride All.