I’ve got Apache 2.2 installed on my Windows machine, and there seems to be a problem with .htaccess.
I enabled `mod_rewrite` in `httpd.conf` file, and wrote some conditions into my .htaccess, but nothing works. I tried putting some garbage into it, to see if it would return Internal Server Error, but not even that would work. What could be the problem?
Could the problem be, that my Apache is located in “C:\Program Files\Apache Software Foundation”, and my server root is at “C:\Users\Grega\Server”? I can’t find anything that would point to .htaccess in httpd.conf
Make sure you don’t have
AllowOverride Noneset for the directoryC:\Users\Grega\Server. Otherwise htaccess files could be entirely ignored. You could turn all the overrides on by anAllowOverride Allor at the very leastAllowOverride FileInfo.