Skip to content

Instantly share code, notes, and snippets.

@pierobm72
pierobm72 / .htaccess para public
Created December 10, 2022 00:26 — forked from JCervantesB/.htaccess para public
htaccess para proyectos MVC CodigoConJuan
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>