Skip to content

Instantly share code, notes, and snippets.

@farindra
Created March 16, 2019 19:21
Show Gist options
  • Save farindra/c30989696febeb80a50e4d26a396eab0 to your computer and use it in GitHub Desktop.
Save farindra/c30989696febeb80a50e4d26a396eab0 to your computer and use it in GitHub Desktop.
Codeigniter 3 Subdomain htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment