htaccess rewriterule works in one virtualhost, but not a second virtualhost
- by Casey Flynn
I have two virtualhosts configured with xampp on mac os x snow lion. Both use the following .htaccess file.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
#Removes access to the system folder by users.
#Additionally this will…