ipetrovbg/RateIt/master/.htaccess - Htaccess File

ipetrovbg/RateIt/master/.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /rateit

RewriteCond %{REQUEST_URI} ^sistem.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

RewriteCond %{REQUEST_FILNAME} !-f
RewriteCond %{REQUEST_FILNAME} !-d
RewriteCond $1 !^(index.php|img|assets|robots.txt|css|js|system|f|documentation|admin)
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILNAME, REQUEST_URI

Comments

Apache