install/.htaccess
author Dan
Fri, 23 Jan 2009 22:03:39 -0500
changeset 819 7ef806a90d44
parent 510 290fa071842a
permissions -rw-r--r--
Installer: add RewriteBase to .htaccess to work properly under aliased Apache setups (generated 404s in QA)

# Used for testing mod_rewrite.
<IfModule mod_rewrite.c>
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) install.php?do=modrewrite_test&str=$1
</IfModule>