Skip to content

Instantly share code, notes, and snippets.

View olivaresdei6's full-sized avatar

Deiber Duban Olivares Olivares olivaresdei6

  • Universidad De La Costa (CUC)
  • Barranquilla Colombia
  • 22:19 (UTC -12:00)
View GitHub Profile
@JCervantesB
JCervantesB / .htaccess para public
Last active March 11, 2025 04:24
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>