Skip to content

Instantly share code, notes, and snippets.

@thexdev
Created December 29, 2019 04:32
Show Gist options
  • Save thexdev/9d736e257868cbe2f9658ed2202b5ec9 to your computer and use it in GitHub Desktop.
Save thexdev/9d736e257868cbe2f9658ed2202b5ec9 to your computer and use it in GitHub Desktop.
htaccess rewrite url to removing index.php on codeigniter 3
RewriteEngine On
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