Apache服务器 htaccess 完整备份

<Files *>
   Options -Indexes
</Files>


<IfModule mod_headers.c>
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=2592000, public"
</FilesMatch>
<FilesMatch "\.(xml|txt)$">
Header set Cache-Control "max-age=604800, public, max-age"
</FilesMatch>
<FilesMatch "\.(html|htm|php|shtml)$">
Header set Cache-Control "max-age=18000, max-age"
</FilesMatch>
</IfModule>


<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_URI} !(.*)/$
#  RewriteCond %{REQUEST_URI} !\.html$
  RewriteRule ^(.*)$ /$1/ [L,R=301]

  #RewriteCond %{HTTP_HOST} !^(m.zbphp.com|localhost|demo|192.168.) [NC]
  #RewriteRule ^(.*)$ http://m.zbphp.com/$1 [L,R=301]

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

Apache服务器 htaccess 完整备份,布布扣,bubuko.com

Apache服务器 htaccess 完整备份

上一篇:mysql 优化


下一篇:SQL中的Filter, join, semi-join等概念的释义