kiwibeach/comparador/master/.htaccess - Htaccess File

kiwibeach/comparador/master/.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
#WWW SI DIERA INPUT FILE SPECIFIED EN EL SERVER, DESCOMENTAR LA DE ABAJO Y COMENTAR LA SIGUIENTE
#RewriteCond %{REQUEST_URI} ^/system.*
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#WWW SI DIERA INPUT FILE SPECIFIED EN EL SERVER, DESCOMENTAR LA DE ABAJO Y COMENTAR LA SIGUIENTE
#RewriteRule ^(.*)$ index.php?/$1 [L]   
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>

On Github License

Files

Download PDF of Htaccess file
PUT, REQUEST_FILENAME, REQUEST_URI

Comments

Apache