Permalink on localhost issues
Ok 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.
I do think it is a classipress-specific issue because it does NOT happen to my other wordpress project.
I've search other post and they said the development team has test it locally before come to live, maybe they should share their setup with us?