.htaccess 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Use the front controller as index file. It serves as a fallback solution when
  2. # every other rewrite/redirect fails (e.g. in an aliased environment without
  3. # mod_rewrite). Additionally, this reduces the matching process for the
  4. # start page (path "/") because otherwise Apache will apply the rewriting rules
  5. # to each configured DirectoryIndex file (e.g. index.php, index.html, index.pl).
  6. DirectoryIndex index.php
  7. # By default, Apache does not evaluate symbolic links if you did not enable this
  8. # feature in your server configuration. Uncomment the following line if you
  9. # install assets as symlinks or if you experience problems related to symlinks
  10. # when compiling LESS/Sass/CoffeScript assets.
  11. # Options FollowSymlinks
  12. # Disabling MultiViews prevents unwanted negotiation, e.g. "/index" should not resolve
  13. # to the front controller "/index.php" but be rewritten to "/index.php/index".
  14. <IfModule mod_negotiation.c>
  15. Options -MultiViews
  16. </IfModule>
  17. <IfModule mod_rewrite.c>
  18. RewriteEngine On
  19. # Determine the RewriteBase automatically and set it as environment variable.
  20. # If you are using Apache aliases to do mass virtual hosting or installed the
  21. # project in a subdirectory, the base path will be prepended to allow proper
  22. # resolution of the index.php file and to redirect to the correct URI. It will
  23. # work in environments without path prefix as well, providing a safe, one-size
  24. # fits all solution. But as you do not need it in this case, you can comment
  25. # the following 2 lines to eliminate the overhead.
  26. RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
  27. RewriteRule ^(.*) - [E=BASE:%1]
  28. # Sets the HTTP_AUTHORIZATION header removed by Apache
  29. RewriteCond %{HTTP:Authorization} .
  30. RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  31. # Redirect to URI without front controller to prevent duplicate content
  32. # (with and without `/index.php`). Only do this redirect on the initial
  33. # rewrite by Apache and not on subsequent cycles. Otherwise we would get an
  34. # endless redirect loop (request -> rewrite to front controller ->
  35. # redirect -> request -> ...).
  36. # So in case you get a "too many redirects" error or you always get redirected
  37. # to the start page because your Apache does not expose the REDIRECT_STATUS
  38. # environment variable, you have 2 choices:
  39. # - disable this feature by commenting the following 2 lines or
  40. # - use Apache >= 2.3.9 and replace all L flags by END flags and remove the
  41. # following RewriteCond (best solution)
  42. RewriteCond %{ENV:REDIRECT_STATUS} ^$
  43. RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]
  44. # If the requested filename exists, simply serve it.
  45. # We only want to let Apache serve files and not directories.
  46. RewriteCond %{REQUEST_FILENAME} -f
  47. RewriteRule ^ - [L]
  48. # Ignore static files
  49. RewriteRule ^(build)($|/) - [L]
  50. RewriteRule ^(bundles)($|/) - [L]
  51. RewriteRule ^(img)($|/) - [L]
  52. RewriteRule ^(libs)($|/) - [L]
  53. RewriteRule ^(uploads)($|/) - [L]
  54. # Rewrite all other queries to the front controller.
  55. RewriteRule ^ %{ENV:BASE}/index.php [L]
  56. </IfModule>
  57. <IfModule !mod_rewrite.c>
  58. <IfModule mod_alias.c>
  59. # When mod_rewrite is not available, we instruct a temporary redirect of
  60. # the start page to the front controller explicitly so that the website
  61. # and the generated links can still be used.
  62. RedirectMatch 307 ^/$ /index.php/
  63. # RedirectTemp cannot be used instead
  64. </IfModule>
  65. </IfModule>