.htaccess 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. # Apache Configuration File
  2. # (!) Using `.htaccess` files slows down Apache, therefore, if you have access
  3. # to the main server config file (usually called `httpd.conf`), you should add
  4. # this logic there: http://httpd.apache.org/docs/current/howto/htaccess.html.
  5. # ##############################################################################
  6. # # CROSS-ORIGIN RESOURCE SHARING (CORS) #
  7. # ##############################################################################
  8. # ------------------------------------------------------------------------------
  9. # | Cross-domain AJAX requests |
  10. # ------------------------------------------------------------------------------
  11. # Enable cross-origin AJAX requests.
  12. # http://code.google.com/p/html5security/wiki/CrossOriginRequestSecurity
  13. # http://enable-cors.org/
  14. # <IfModule mod_headers.c>
  15. # Header set Access-Control-Allow-Origin "*"
  16. # </IfModule>
  17. # ------------------------------------------------------------------------------
  18. # | CORS-enabled images |
  19. # ------------------------------------------------------------------------------
  20. # Send the CORS header for images when browsers request it.
  21. # https://developer.mozilla.org/en/CORS_Enabled_Image
  22. # http://blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
  23. # http://hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
  24. <IfModule mod_setenvif.c>
  25. <IfModule mod_headers.c>
  26. <FilesMatch "\.(gif|ico|jpe?g|png|svg|svgz|webp)$">
  27. SetEnvIf Origin ":" IS_CORS
  28. Header set Access-Control-Allow-Origin "*" env=IS_CORS
  29. </FilesMatch>
  30. </IfModule>
  31. </IfModule>
  32. # ------------------------------------------------------------------------------
  33. # | Web fonts access |
  34. # ------------------------------------------------------------------------------
  35. # Allow access from all domains for web fonts
  36. <IfModule mod_headers.c>
  37. <FilesMatch "\.(eot|font.css|otf|ttc|ttf|woff)$">
  38. Header set Access-Control-Allow-Origin "*"
  39. </FilesMatch>
  40. </IfModule>
  41. # ##############################################################################
  42. # # ERRORS #
  43. # ##############################################################################
  44. # ------------------------------------------------------------------------------
  45. # | 404 error prevention for non-existing redirected folders |
  46. # ------------------------------------------------------------------------------
  47. # Prevent Apache from returning a 404 error for a rewrite if a directory
  48. # with the same name does not exist.
  49. # http://httpd.apache.org/docs/current/content-negotiation.html#multiviews
  50. # http://www.webmasterworld.com/apache/3808792.htm
  51. Options -MultiViews
  52. # ------------------------------------------------------------------------------
  53. # | Custom error messages / pages |
  54. # ------------------------------------------------------------------------------
  55. # You can customize what Apache returns to the client in case of an error (see
  56. # http://httpd.apache.org/docs/current/mod/core.html#errordocument), e.g.:
  57. ErrorDocument 404 /404.html
  58. # ##############################################################################
  59. # # INTERNET EXPLORER #
  60. # ##############################################################################
  61. # ------------------------------------------------------------------------------
  62. # | Better website experience |
  63. # ------------------------------------------------------------------------------
  64. # Force IE to render pages in the highest available mode in the various
  65. # cases when it may not: http://hsivonen.iki.fi/doctype/ie-mode.pdf.
  66. <IfModule mod_headers.c>
  67. Header set X-UA-Compatible "IE=edge"
  68. # `mod_headers` can't match based on the content-type, however, we only
  69. # want to send this header for HTML pages and not for the other resources
  70. <FilesMatch "\.(appcache|crx|css|eot|gif|htc|ico|jpe?g|js|m4a|m4v|manifest|mp4|oex|oga|ogg|ogv|otf|pdf|png|safariextz|svg|svgz|ttf|vcf|webapp|webm|webp|woff|xml|xpi)$">
  71. Header unset X-UA-Compatible
  72. </FilesMatch>
  73. </IfModule>
  74. # ------------------------------------------------------------------------------
  75. # | Cookie setting from iframes |
  76. # ------------------------------------------------------------------------------
  77. # Allow cookies to be set from iframes in IE.
  78. # <IfModule mod_headers.c>
  79. # Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""
  80. # </IfModule>
  81. # ------------------------------------------------------------------------------
  82. # | Screen flicker |
  83. # ------------------------------------------------------------------------------
  84. # Stop screen flicker in IE on CSS rollovers (this only works in
  85. # combination with the `ExpiresByType` directives for images from below).
  86. # BrowserMatch "MSIE" brokenvary=1
  87. # BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
  88. # BrowserMatch "Opera" !brokenvary
  89. # SetEnvIf brokenvary 1 force-no-vary
  90. # ##############################################################################
  91. # # MIME TYPES AND ENCODING #
  92. # ##############################################################################
  93. # ------------------------------------------------------------------------------
  94. # | Proper MIME types for all files |
  95. # ------------------------------------------------------------------------------
  96. <IfModule mod_mime.c>
  97. # Audio
  98. AddType audio/mp4 m4a f4a f4b
  99. AddType audio/ogg oga ogg
  100. # JavaScript
  101. # Normalize to standard type (it's sniffed in IE anyways):
  102. # http://tools.ietf.org/html/rfc4329#section-7.2
  103. AddType application/javascript js jsonp
  104. AddType application/json json
  105. # Video
  106. AddType video/mp4 mp4 m4v f4v f4p
  107. AddType video/ogg ogv
  108. AddType video/webm webm
  109. AddType video/x-flv flv
  110. # Web fonts
  111. AddType application/font-woff woff
  112. AddType application/vnd.ms-fontobject eot
  113. # Browsers usually ignore the font MIME types and sniff the content,
  114. # however, Chrome shows a warning if other MIME types are used for the
  115. # following fonts.
  116. AddType application/x-font-ttf ttc ttf
  117. AddType font/opentype otf
  118. # Make SVGZ fonts work on iPad:
  119. # https://twitter.com/FontSquirrel/status/14855840545
  120. AddType image/svg+xml svg svgz
  121. AddEncoding gzip svgz
  122. # Other
  123. AddType application/octet-stream safariextz
  124. AddType application/x-chrome-extension crx
  125. AddType application/x-opera-extension oex
  126. AddType application/x-shockwave-flash swf
  127. AddType application/x-web-app-manifest+json webapp
  128. AddType application/x-xpinstall xpi
  129. AddType application/xml atom rdf rss xml
  130. AddType image/webp webp
  131. AddType image/x-icon ico
  132. AddType text/cache-manifest appcache manifest
  133. AddType text/vtt vtt
  134. AddType text/x-component htc
  135. AddType text/x-vcard vcf
  136. </IfModule>
  137. # ------------------------------------------------------------------------------
  138. # | UTF-8 encoding |
  139. # ------------------------------------------------------------------------------
  140. # Use UTF-8 encoding for anything served as `text/html` or `text/plain`.
  141. AddDefaultCharset utf-8
  142. # Force UTF-8 for certain file formats.
  143. <IfModule mod_mime.c>
  144. AddCharset utf-8 .atom .css .js .json .rss .vtt .webapp .xml
  145. </IfModule>
  146. # ##############################################################################
  147. # # URL REWRITES #
  148. # ##############################################################################
  149. # ------------------------------------------------------------------------------
  150. # | Rewrite engine |
  151. # ------------------------------------------------------------------------------
  152. # Turning on the rewrite engine and enabling the `FollowSymLinks` option is
  153. # necessary for the following directives to work.
  154. # If your web host doesn't allow the `FollowSymlinks` option, you may need to
  155. # comment it out and use `Options +SymLinksIfOwnerMatch` but, be aware of the
  156. # performance impact: http://httpd.apache.org/docs/current/misc/perf-tuning.html#symlinks
  157. # Also, some cloud hosting services require `RewriteBase` to be set:
  158. # http://www.rackspace.com/knowledge_center/frequently-asked-question/why-is-mod-rewrite-not-working-on-my-site
  159. <IfModule mod_rewrite.c>
  160. Options +FollowSymlinks
  161. # Options +SymLinksIfOwnerMatch
  162. RewriteEngine On
  163. # RewriteBase /
  164. </IfModule>
  165. # ------------------------------------------------------------------------------
  166. # | Suppressing / Forcing the "www." at the beginning of URLs |
  167. # ------------------------------------------------------------------------------
  168. # The same content should never be available under two different URLs especially
  169. # not with and without "www." at the beginning. This can cause SEO problems
  170. # (duplicate content), therefore, you should choose one of the alternatives and
  171. # redirect the other one.
  172. # By default option 1 (no "www.") is activated:
  173. # http://no-www.org/faq.php?q=class_b
  174. # If you'd prefer to use option 2, just comment out all the lines from option 1
  175. # and uncomment the ones from option 2.
  176. # IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME!
  177. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  178. # Option 1: rewrite www.example.com → example.com
  179. <IfModule mod_rewrite.c>
  180. RewriteCond %{HTTPS} !=on
  181. RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
  182. RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
  183. </IfModule>
  184. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  185. # Option 2: rewrite example.com → www.example.com
  186. # Be aware that the following might not be a good idea if you use "real"
  187. # subdomains for certain parts of your website.
  188. # <IfModule mod_rewrite.c>
  189. # RewriteCond %{HTTPS} !=on
  190. # RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
  191. # RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
  192. # </IfModule>
  193. # ##############################################################################
  194. # # SECURITY #
  195. # ##############################################################################
  196. # ------------------------------------------------------------------------------
  197. # | Content Security Policy (CSP) |
  198. # ------------------------------------------------------------------------------
  199. # You can mitigate the risk of cross-site scripting and other content-injection
  200. # attacks by setting a Content Security Policy which whitelists trusted sources
  201. # of content for your site.
  202. # The example header below allows ONLY scripts that are loaded from the current
  203. # site's origin (no inline scripts, no CDN, etc). This almost certainly won't
  204. # work as-is for your site!
  205. # To get all the details you'll need to craft a reasonable policy for your site,
  206. # read: http://html5rocks.com/en/tutorials/security/content-security-policy (or
  207. # see the specification: http://w3.org/TR/CSP).
  208. # <IfModule mod_headers.c>
  209. # Header set Content-Security-Policy "script-src 'self'; object-src 'self'"
  210. # <FilesMatch "\.(appcache|crx|css|eot|gif|htc|ico|jpe?g|js|m4a|m4v|manifest|mp4|oex|oga|ogg|ogv|otf|pdf|png|safariextz|svg|svgz|ttf|vcf|webapp|webm|webp|woff|xml|xpi)$">
  211. # Header unset Content-Security-Policy
  212. # </FilesMatch>
  213. # </IfModule>
  214. # ------------------------------------------------------------------------------
  215. # | File access |
  216. # ------------------------------------------------------------------------------
  217. # Block access to directories without a default document.
  218. # Usually you should leave this uncommented because you shouldn't allow anyone
  219. # to surf through every directory on your server (which may includes rather
  220. # private places like the CMS's directories).
  221. <IfModule mod_autoindex.c>
  222. Options -Indexes
  223. </IfModule>
  224. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  225. # Block access to hidden files and directories.
  226. # This includes directories used by version control systems such as Git and SVN.
  227. <IfModule mod_rewrite.c>
  228. RewriteCond %{SCRIPT_FILENAME} -d [OR]
  229. RewriteCond %{SCRIPT_FILENAME} -f
  230. RewriteRule "(^|/)\." - [F]
  231. </IfModule>
  232. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  233. # Block access to backup and source files.
  234. # These files may be left by some text editors and can pose a great security
  235. # danger when anyone has access to them.
  236. <FilesMatch "(^#.*#|\.(bak|config|dist|fla|inc|ini|log|psd|sh|sql|sw[op])|~)$">
  237. Order allow,deny
  238. Deny from all
  239. Satisfy All
  240. </FilesMatch>
  241. # ------------------------------------------------------------------------------
  242. # | Secure Sockets Layer (SSL) |
  243. # ------------------------------------------------------------------------------
  244. # Rewrite secure requests properly to prevent SSL certificate warnings, e.g.:
  245. # prevent `https://www.example.com` when your certificate only allows
  246. # `https://secure.example.com`.
  247. # <IfModule mod_rewrite.c>
  248. # RewriteCond %{SERVER_PORT} !^443
  249. # RewriteRule ^ https://example-domain-please-change-me.com%{REQUEST_URI} [R=301,L]
  250. # </IfModule>
  251. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  252. # Force client-side SSL redirection.
  253. # If a user types "example.com" in his browser, the above rule will redirect him
  254. # to the secure version of the site. That still leaves a window of opportunity
  255. # (the initial HTTP connection) for an attacker to downgrade or redirect the
  256. # request. The following header ensures that browser will ONLY connect to your
  257. # server via HTTPS, regardless of what the users type in the address bar.
  258. # http://www.html5rocks.com/en/tutorials/security/transport-layer-security/
  259. # <IfModule mod_headers.c>
  260. # Header set Strict-Transport-Security max-age=16070400;
  261. # </IfModule>
  262. # ------------------------------------------------------------------------------
  263. # | Server software information |
  264. # ------------------------------------------------------------------------------
  265. # Avoid displaying the exact Apache version number, the description of the
  266. # generic OS-type and the information about Apache's compiled-in modules.
  267. # ADD THIS DIRECTIVE IN THE `httpd.conf` AS IT WILL NOT WORK IN THE `.htaccess`!
  268. # ServerTokens Prod
  269. # ##############################################################################
  270. # # WEB PERFORMANCE #
  271. # ##############################################################################
  272. # ------------------------------------------------------------------------------
  273. # | Compression |
  274. # ------------------------------------------------------------------------------
  275. <IfModule mod_deflate.c>
  276. # Force compression for mangled headers.
  277. # http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
  278. <IfModule mod_setenvif.c>
  279. <IfModule mod_headers.c>
  280. SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
  281. RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
  282. </IfModule>
  283. </IfModule>
  284. # Compress all output labeled with one of the following MIME-types
  285. # (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
  286. # and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
  287. # as `AddOutputFilterByType` is still in the core directives).
  288. <IfModule mod_filter.c>
  289. AddOutputFilterByType DEFLATE application/atom+xml \
  290. application/javascript \
  291. application/json \
  292. application/rss+xml \
  293. application/vnd.ms-fontobject \
  294. application/x-font-ttf \
  295. application/x-web-app-manifest+json \
  296. application/xhtml+xml \
  297. application/xml \
  298. font/opentype \
  299. image/svg+xml \
  300. image/x-icon \
  301. text/css \
  302. text/html \
  303. text/plain \
  304. text/x-component \
  305. text/xml
  306. </IfModule>
  307. </IfModule>
  308. # ------------------------------------------------------------------------------
  309. # | Content transformations |
  310. # ------------------------------------------------------------------------------
  311. # Prevent some of the mobile network providers from modifying the content of
  312. # your site: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.5.
  313. # <IfModule mod_headers.c>
  314. # Header set Cache-Control "no-transform"
  315. # </IfModule>
  316. # ------------------------------------------------------------------------------
  317. # | ETag removal |
  318. # ------------------------------------------------------------------------------
  319. # Since we're sending far-future expires headers (see below), ETags can
  320. # be removed: http://developer.yahoo.com/performance/rules.html#etags.
  321. # `FileETag None` is not enough for every server.
  322. <IfModule mod_headers.c>
  323. Header unset ETag
  324. </IfModule>
  325. FileETag None
  326. # ------------------------------------------------------------------------------
  327. # | Expires headers (for better cache control) |
  328. # ------------------------------------------------------------------------------
  329. # The following expires headers are set pretty far in the future. If you don't
  330. # control versioning with filename-based cache busting, consider lowering the
  331. # cache time for resources like CSS and JS to something like 1 week.
  332. <IfModule mod_expires.c>
  333. ExpiresActive on
  334. ExpiresDefault "access plus 1 month"
  335. # CSS
  336. ExpiresByType text/css "access plus 1 year"
  337. # Data interchange
  338. ExpiresByType application/json "access plus 0 seconds"
  339. ExpiresByType application/xml "access plus 0 seconds"
  340. ExpiresByType text/xml "access plus 0 seconds"
  341. # Favicon (cannot be renamed!)
  342. ExpiresByType image/x-icon "access plus 1 week"
  343. # HTML components (HTCs)
  344. ExpiresByType text/x-component "access plus 1 month"
  345. # HTML
  346. ExpiresByType text/html "access plus 0 seconds"
  347. # JavaScript
  348. ExpiresByType application/javascript "access plus 1 year"
  349. # Manifest files
  350. ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
  351. ExpiresByType text/cache-manifest "access plus 0 seconds"
  352. # Media
  353. ExpiresByType audio/ogg "access plus 1 month"
  354. ExpiresByType image/gif "access plus 1 month"
  355. ExpiresByType image/jpeg "access plus 1 month"
  356. ExpiresByType image/png "access plus 1 month"
  357. ExpiresByType video/mp4 "access plus 1 month"
  358. ExpiresByType video/ogg "access plus 1 month"
  359. ExpiresByType video/webm "access plus 1 month"
  360. # Web feeds
  361. ExpiresByType application/atom+xml "access plus 1 hour"
  362. ExpiresByType application/rss+xml "access plus 1 hour"
  363. # Web fonts
  364. ExpiresByType application/font-woff "access plus 1 month"
  365. ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
  366. ExpiresByType application/x-font-ttf "access plus 1 month"
  367. ExpiresByType font/opentype "access plus 1 month"
  368. ExpiresByType image/svg+xml "access plus 1 month"
  369. </IfModule>
  370. # ------------------------------------------------------------------------------
  371. # | Filename-based cache busting |
  372. # ------------------------------------------------------------------------------
  373. # If you're not using a build process to manage your filename version revving,
  374. # you might want to consider enabling the following directives to route all
  375. # requests such as `/css/style.12345.css` to `/css/style.css`.
  376. # To understand why this is important and a better idea than `*.css?v231`, read:
  377. # http://stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring
  378. # <IfModule mod_rewrite.c>
  379. # RewriteCond %{REQUEST_FILENAME} !-f
  380. # RewriteCond %{REQUEST_FILENAME} !-d
  381. # RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
  382. # </IfModule>
  383. # ------------------------------------------------------------------------------
  384. # | File concatenation |
  385. # ------------------------------------------------------------------------------
  386. # Allow concatenation from within specific CSS and JS files, e.g.:
  387. # Inside of `script.combined.js` you could have
  388. # <!--#include file="libs/jquery.js" -->
  389. # <!--#include file="plugins/jquery.idletimer.js" -->
  390. # and they would be included into this single file.
  391. # <IfModule mod_include.c>
  392. # <FilesMatch "\.combined\.js$">
  393. # Options +Includes
  394. # AddOutputFilterByType INCLUDES application/javascript application/json
  395. # SetOutputFilter INCLUDES
  396. # </FilesMatch>
  397. # <FilesMatch "\.combined\.css$">
  398. # Options +Includes
  399. # AddOutputFilterByType INCLUDES text/css
  400. # SetOutputFilter INCLUDES
  401. # </FilesMatch>
  402. # </IfModule>
  403. # ------------------------------------------------------------------------------
  404. # | Persistent connections |
  405. # ------------------------------------------------------------------------------
  406. # Allow multiple requests to be sent over the same TCP connection:
  407. # http://httpd.apache.org/docs/current/en/mod/core.html#keepalive.
  408. # Enable if you serve a lot of static content but, be aware of the
  409. # possible disadvantages!
  410. # <IfModule mod_headers.c>
  411. # Header set Connection Keep-Alive
  412. # </IfModule>