ipetrovbg/fileHolder/master/.htaccess - Htaccess File

ipetrovbg/fileHolder/master/.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /fileHolder

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|images|documents|robots.txt|css|js|system)
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILNAME, REQUEST_URI

Comments

Apache