Skip to content

Instantly share code, notes, and snippets.

@remoharsono
Created December 11, 2019 22:15
Show Gist options
  • Save remoharsono/247bf65c2a728a31cd9b14d0963cf4be to your computer and use it in GitHub Desktop.
Save remoharsono/247bf65c2a728a31cd9b14d0963cf4be to your computer and use it in GitHub Desktop.
Code Igniter .htaccess Rewrite Rule
RewriteEngine On
# if the file with the specified name in the browser doesn’t exist,
# or the directory in the browser doesn’t exist then procede to the rewrite rule below
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# this is the last rule
RewriteRule ^(.*)$ index.php/$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment