Created
May 22, 2014 12:19
-
-
Save eminetto/bf8732061ce24fb2335f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
DocumentRoot "/var/www/html/ufun" | |
ServerName ufun.coderockr.com | |
SetEnv APPLICATION_ENV "development" | |
<Directory "/var/www/html/ufun"> | |
Options Indexes Multiviews FollowSymLinks | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
<Limit GET HEAD POST PUT DELETE OPTIONS> | |
Order Allow,Deny | |
Allow from all | |
</Limit> | |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule !\.(js|ico|gif|jpg|png|css|htm|html|txt|mp3)$ index.php | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment