Whenever I apply .htaccess file in my WAMP servers www
folder, it shows:
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmaster@http://www.domain.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log
My .htaccess file is:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^finduser/(.*)/(.*)/$ finduser/finduserResult.php?City=$1&txtAreaRzip=$2 [L,NC]
hhtpd.conf File: I have enable the LoadModule rewrite_module modules/mod_rewrite.so.
<IfModule mod_rewrite.c>
and</IfModule>
– kjetilh