apache
设置错误页面ErrorDocument400 /error_pages/400.htmlErrorDocument401 /error_pages/401.htmlErrorDocument403 /error_pages/403.htmlErrorDocument404 /error_pages/404.htmlErrorDocument500 /error_pages/500.html
设置重定向#从 old_dir 目录重定向到 new_dir 目录Redirect /old_dir/ http://www.yourdomain.com/new_dir/index.html#把通过二级目录访问的请求301重定向到二级域名RedirectMatch301 /dir/(.*) http://dir.yourdomain.com/$1
禁止指定IP访问#禁止 IP 为 255.0.0.0 和 123.45.6.区段的 IP 访问orderallow,denydeny from 255.0.0.0deny from 123.45.6.allow from all
禁止指定来源访问#禁止从 otherdomain.com 和 anotherdomain.com 的来源访问RewriteEngineon# Options +FollowSymlinksRewriteCond %{HTTP_REFERER} otherdomain\.com [NC,OR]RewriteCond %{HTTP_REFERER} anotherdomain\.comRewriteRule .* - [F]
文件防盗链#从本站以外的域名访问图片,一律显示 feed.jpgRewriteEngineonRewriteCond %{HTTP_REFERER} !^$RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]RewriteRule \.(gif|jpg|png)$ http://www.yourdomain.com/feed.jpg [R,L]
禁用文件夹列表#如果你的文件夹没有首页文件,服务器会显示文件列表,你可以设置不显示IndexIgnore *#仅不显示 .zip/.jpg/.gif 格式的文件IndexIgnore *.zip *.jpg *.gif
设置文件夹首页#防止显示文件夹列表,当访问文件夹时,服务器查找 index.html 为首页文件,如不存在依次向后查找DirectoryIndex index.html index.cgi index.php
设置媒体文件为可下载的而非播放AddType application/octet-stream .mp3 .mp4
自定义 HTTP 报头Header set X-Pingback 'http://www.xxx.cn/xmlrpc.php'Header set article-by 'xxx.cn'
设置文件过期时间 Cache Control
基本配置方法都在上面了 各位有不懂的欢迎提问~