up vote 0 down vote favorite
share [g+] share [fb]

Possible Duplicate:
Apache mod_rewrite not working

I installed Apache through its windows installer and then PHP and MySQL too. Wordpress is working fine on this setup so it means the basic setup required is working fine.

But somehow mod_rewrite is not working even though i have uncommented the LoadModule.....mod_rewrite from httpd.conf.

whenever i go to some permalink on my localhost I just get a 404 (browser based, not wordpress based).

Please suggest the required changes that i need to do.

link|improve this question
4  
Did you restart apache? – Greg Aug 16 '09 at 12:29
Did you have a look in your error_log? – innaM Aug 16 '09 at 12:42
1  
@greg yes i did. but radius solved the problem – OrangeRind Aug 16 '09 at 13:45
feedback

migrated from stackoverflow.com Aug 16 '09 at 23:49

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by splattne Aug 31 '09 at 6:29

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

1 Answer

Most likely your wordpress .htaccess file isn't being used by apache. Inside your httpd.conf file replace "Override None" with "Override All".

link|improve this answer
AllowOverride FileInfo should be enough, see my answer on serverfault : serverfault.com/questions/54700/apache-modrewrite-not-working/… – radius Aug 16 '09 at 13:14
thanks it worked! +1 – OrangeRind Aug 16 '09 at 13:49
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.