説明なし

.htaccess 516B

1234567891011121314151617181920
  1. <IfModule mod_rewrite.c>
  2. <IfModule mod_negotiation.c>
  3. Options -MultiViews
  4. </IfModule>
  5. RewriteEngine On
  6. # Redirect Trailing Slashes...
  7. RewriteRule ^(.*)/$ /$1 [L,R=301]
  8. # Handle Front Controller...
  9. RewriteCond %{REQUEST_FILENAME} !-d
  10. RewriteCond %{REQUEST_FILENAME} !-f
  11. RewriteRule ^ index.php [L]
  12. # Include Authorization header in a request
  13. RewriteCond %{HTTP:Authorization} ^(.+)$
  14. RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  15. </IfModule>