ladogton2010 commited on
Commit
694a3b2
·
1 Parent(s): a84929c

Redirecting to public folder

Browse files
Files changed (1) hide show
  1. mvc/.htaccess +5 -0
mvc/.htaccess ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ <IfModule mod_rewrite.c>
2
+ RewriteEngine On
3
+ RewriteRule ^$ public/ [L]
4
+ RewriteRule (.*) public/$1 [L]
5
+ </IfModule>