.htaccess 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #
  2. # Apache/PHP/Drupal settings:
  3. #
  4. # Protect files and directories from prying eyes.
  5. <FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\..*|Entries.*|Repository|Root|Tag|Template)$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig\.save)$">
  6. Order allow,deny
  7. </FilesMatch>
  8. # Don't show directory listings for URLs which map to a directory.
  9. Options -Indexes
  10. # Follow symbolic links in this directory.
  11. Options +FollowSymLinks
  12. # Make Drupal handle any 404 errors.
  13. ErrorDocument 404 /index.php
  14. # Set the default handler.
  15. DirectoryIndex index.php index.html index.htm
  16. # Override PHP settings that cannot be changed at runtime. See
  17. # sites/default/default.settings.php and drupal_environment_initialize() in
  18. # includes/bootstrap.inc for settings that can be changed at runtime.
  19. # PHP 5, Apache 1 and 2.
  20. <IfModule mod_php5.c>
  21. php_flag magic_quotes_gpc off
  22. php_flag magic_quotes_sybase off
  23. php_flag register_globals off
  24. php_flag session.auto_start off
  25. php_value mbstring.http_input pass
  26. php_value mbstring.http_output pass
  27. php_flag mbstring.encoding_translation off
  28. </IfModule>
  29. # Requires mod_expires to be enabled.
  30. <IfModule mod_expires.c>
  31. # Enable expirations.
  32. ExpiresActive On
  33. # Cache all files for 2 weeks after access (A).
  34. ExpiresDefault A1209600
  35. <FilesMatch \.php$>
  36. # Do not allow PHP scripts to be cached unless they explicitly send cache
  37. # headers themselves. Otherwise all scripts would have to overwrite the
  38. # headers set by mod_expires if they want another caching behavior. This may
  39. # fail if an error occurs early in the bootstrap process, and it may cause
  40. # problems if a non-Drupal PHP file is installed in a subdirectory.
  41. ExpiresActive Off
  42. </FilesMatch>
  43. </IfModule>
  44. # Various rewrite rules.
  45. <IfModule mod_rewrite.c>
  46. RewriteEngine on
  47. # Set "protossl" to "s" if we were accessed via https://. This is used later
  48. # if you enable "www." stripping or enforcement, in order to ensure that
  49. # you don't bounce between http and https.
  50. RewriteRule ^ - [E=protossl]
  51. RewriteCond %{HTTPS} on
  52. RewriteRule ^ - [E=protossl:s]
  53. # Make sure Authorization HTTP header is available to PHP
  54. # even when running as CGI or FastCGI.
  55. RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  56. # Block access to "hidden" directories whose names begin with a period. This
  57. # includes directories used by version control systems such as Subversion or
  58. # Git to store control files. Files whose names begin with a period, as well
  59. # as the control files used by CVS, are protected by the FilesMatch directive
  60. # above.
  61. #
  62. # NOTE: This only works when mod_rewrite is loaded. Without mod_rewrite, it is
  63. # not possible to block access to entire directories from .htaccess, because
  64. # <DirectoryMatch> is not allowed here.
  65. #
  66. # If you do not have mod_rewrite installed, you should remove these
  67. # directories from your webroot or otherwise protect them from being
  68. # downloaded.
  69. RewriteRule "(^|/)\." - [F]
  70. # If your site can be accessed both with and without the 'www.' prefix, you
  71. # can use one of the following settings to redirect users to your preferred
  72. # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
  73. #
  74. # To redirect all users to access the site WITH the 'www.' prefix,
  75. # (http://example.com/... will be redirected to http://www.example.com/...)
  76. # uncomment the following:
  77. # RewriteCond %{HTTP_HOST} .
  78. # RewriteCond %{HTTP_HOST} !^www\. [NC]
  79. # RewriteRule ^ http%{ENV:protossl}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  80. #
  81. # To redirect all users to access the site WITHOUT the 'www.' prefix,
  82. # (http://www.example.com/... will be redirected to http://example.com/...)
  83. # uncomment the following:
  84. # RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
  85. # RewriteRule ^ http%{ENV:protossl}://%1%{REQUEST_URI} [L,R=301]
  86. # Modify the RewriteBase if you are using Drupal in a subdirectory or in a
  87. # VirtualDocumentRoot and the rewrite rules are not working properly.
  88. # For example if your site is at http://example.com/drupal uncomment and
  89. # modify the following line:
  90. # RewriteBase /drupal
  91. #
  92. # If your site is running in a VirtualDocumentRoot at http://example.com/,
  93. # uncomment the following line:
  94. # RewriteBase /
  95. # Pass all requests not referring directly to files in the filesystem to
  96. # index.php. Clean URLs are handled in drupal_environment_initialize().
  97. RewriteCond %{REQUEST_FILENAME} !-f
  98. RewriteCond %{REQUEST_FILENAME} !-d
  99. RewriteCond %{REQUEST_URI} !=/favicon.ico
  100. RewriteRule ^ index.php [L]
  101. # Rules to correctly serve gzip compressed CSS and JS files.
  102. # Requires both mod_rewrite and mod_headers to be enabled.
  103. <IfModule mod_headers.c>
  104. # Serve gzip compressed CSS files if they exist and the client accepts gzip.
  105. RewriteCond %{HTTP:Accept-encoding} gzip
  106. RewriteCond %{REQUEST_FILENAME}\.gz -s
  107. RewriteRule ^(.*)\.css $1\.css\.gz [QSA]
  108. # Serve gzip compressed JS files if they exist and the client accepts gzip.
  109. RewriteCond %{HTTP:Accept-encoding} gzip
  110. RewriteCond %{REQUEST_FILENAME}\.gz -s
  111. RewriteRule ^(.*)\.js $1\.js\.gz [QSA]
  112. # Serve correct content types, and prevent mod_deflate double gzip.
  113. RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1]
  114. RewriteRule \.js\.gz$ - [T=text/javascript,E=no-gzip:1]
  115. <FilesMatch "(\.js\.gz|\.css\.gz)$">
  116. # Serve correct encoding type.
  117. Header set Content-Encoding gzip
  118. # Force proxies to cache gzipped & non-gzipped css/js files separately.
  119. Header append Vary Accept-Encoding
  120. </FilesMatch>
  121. </IfModule>
  122. </IfModule>