Skip to content

Instantly share code, notes, and snippets.

@naosim
Created March 31, 2018 20:49
Show Gist options
  • Save naosim/c6430ea3a65f1e77e4216ccbf3cf959d to your computer and use it in GitHub Desktop.
Save naosim/c6430ea3a65f1e77e4216ccbf3cf959d to your computer and use it in GitHub Desktop.
PHP用htaccess設定
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /app/silexsample/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /app/silexsample/index.php [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment