ladogton2010 commited on
Commit
c098712
·
1 Parent(s): 4e0f319

Reescribir URL en htaccess de carpeta public

Browse files
Files changed (1) hide show
  1. mvc/public/.htaccess +8 -0
mvc/public/.htaccess ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <IfModule mod_rewrite.c>
2
+ Options -Multiviews
3
+ RewriteEngine On
4
+ RewriteBase /public
5
+ RewriteCond %{REQUEST_FILENAME} !-d
6
+ RewriteCond %{REQUEST_FILENAME} !-f
7
+ RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
8
+ </IfModule>