Skip to content

Instantly share code, notes, and snippets.

@tatuas
Created January 4, 2014 15:23
Show Gist options
  • Save tatuas/8256380 to your computer and use it in GitHub Desktop.
Save tatuas/8256380 to your computer and use it in GitHub Desktop.
localhost/dir1/*.phpをlocalhost/*.phpでアクセスできるようにする
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) now/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment