Skip to content

Instantly share code, notes, and snippets.

@EngKhaledB
Created May 20, 2018 17:25
Show Gist options
  • Save EngKhaledB/b7f941992ac78797d0cffcf7207a4e3a to your computer and use it in GitHub Desktop.
Save EngKhaledB/b7f941992ac78797d0cffcf7207a4e3a to your computer and use it in GitHub Desktop.
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]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment