Skip to content

Instantly share code, notes, and snippets.

@kazukgw
Created December 24, 2012 07:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazukgw/4368196 to your computer and use it in GitHub Desktop.
Save kazukgw/4368196 to your computer and use it in GitHub Desktop.
htaccess rewrite sample #htaccess
RewriteEngine on
# ディレクトリまたはファイルが存在する場合は、それを直接に使う
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# それ以外は index.php に転送する
RewriteRule ^(.*) index.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment