Guest User

Untitled

a guest
Sep 4th, 2013
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. Код PHP:
  2.  
  3. AddDefaultCharset utf-8
  4. # BEGIN WordPress
  5. <IfModule mod_rewrite.c>
  6. RewriteEngine On
  7. RewriteBase /
  8. RewriteRule ^index.php$ - [L]
  9. RewriteCond %{REQUEST_FILENAME} !-f
  10. RewriteCond %{REQUEST_FILENAME} !-d
  11. RewriteRule . /index.php [L]
  12. </IfModule>
  13.  
  14. <IfModule mod_deflate.c> /* Enable compression */
  15. <FilesMatch ".(css|js|xml)$">
  16. SetOutputFilter DEFLATE
  17. </FilesMatch>
  18. </IfModule>
  19.  
  20. <IfModule mod_headers.c> /* Specify a Vary: Accept-Encoding header*/
  21. <FilesMatch ".(js|css|xml|gz)$">
  22. Header append Vary Accept-Encoding
  23. </FilesMatch>
  24. </IfModule>
  25.  
  26. <IfModule mod_expires.c> /* Leverage browser caching*/
  27. ExpiresActive On
  28. ExpiresByType image/png A604800
  29. ExpiresByType image/gif A604800
  30. ExpiresByType image/jpg A604800
  31. ExpiresByType image/jpeg A604800
  32. ExpiresByType text/javascript A604800
  33. ExpiresByType application/x-javascript A604800
  34. ExpiresByType text/css A604800
  35. </IfModule>
  36.  
  37. # END WordPress
Advertisement
Add Comment
Please, Sign In to add comment