Wamp and XAMPP doesn’t come with default rewrite rule enabled, For enabling the rewrite rules in both of them you need to make changes in httpd.conf so that apache can work with rewrite rules.
For enabling the rewrite rules follow these rules:-
1) find httpd.conf (usually this file can be found in folder callled conf , config or something along those lines)
2) Find and uncomment the line LoadModule rewrite_module modules/mod_rewrite.so
3) Find the line with DocumentRoot “C:/path/to/my/root”, There you will find contents like
<Directory>
</Directory>
Make sure the content inside these two braces looks like
<Directory>
Options All
AllowOverride All
</Directory>
4) All done now restart the Apache server and you will be all good to go

{ 5 comments… read them below or Shout @ me! }
Reddit/p: Enable mod_rewrite in windows , WAMP, XAMPP http://bit.ly/UcQ58
This comment was originally posted on Twitter
Enable mod_rewrite in windows , WAMP, XAMPP #php http://is.gd/2tmC9
This comment was originally posted on Twitter
Cheers pal. I do apecpriate the writing.
Glad you like it Daroid. Keep visiting.
Thank a lot , you helped me a lot with this info