Skip to content

Instantly share code, notes, and snippets.

View EngKhaledB's full-sized avatar
🏠
Working from home

Khaled Abu Alqomboz EngKhaledB

🏠
Working from home
View GitHub Profile
@EngKhaledB
EngKhaledB / .htaccess
Created May 20, 2018 17:25
CodeIgniter Sub-folder htaccess
RewriteEngine On
RewriteBase /chalets/
RewriteRule ^$ index.php [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond $1 !^(index\.php|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ index.php?/$1 [L]