配置环境:
加载Rewrite模块:
允许在任何目录中使用“.htaccess”文件,将“AllowOverride”改成“All”(默认为“None”):
复制代码代码如下:
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be “All”, “None”, or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride All 在Windows系统下不能直接建立“.htaccess”文件,可以在命令行下使用“echo a> .htaccess”建立,然后使用记事本编辑。
Apache Rewrite模块的简单应用:
1、请求跳转
复制代码代码如下:
RewriteEngine on
#开启Rewrite模块 RewriteRule (.*)\.php$ http://b.clin003.com/$1\.jsp [R=301,L,NC] #截获所有.jsp请求,跳转到http://b.clin003.com/加上原来的请求再加上.php。R=301为301跳转,L为rewrite规则到此终止,NC为不区分大小写
2、域名跳转
复制代码代码如下:
RewriteEngine on
#开启Rewrite模块 RewriteCond %{REMOTE_HOST} ^old.studenthome.cn$ [NC] #针对host为old.clin003.com的主机做处理,^为开始字符,$为结尾字符 RewriteRule (.*) http://b.clin003.com/$1 [R=301,L,NC]
3、防盗链
复制代码代码如下:
RewriteEngine on
#开启Rewrite模块 RewriteCond %{HTTP_REFERER} !^$ #如果不是直接输入图片地址 RewriteCond %{HTTP_REFERER} !img.clin003.com$ [NC] #且如果不是img.clin003.com所有子域名调用的 RewriteCond %{HTTP_REFERER} !img.clin003.com/(.*)$ [NC] RewriteCond %{HTTP_REFERER} !zhuaxia.com [NC] RewriteCond %{HTTP_REFERER} !google.com [NC] RewriteCond %{HTTP_REFERER} !google.cn [NC] RewriteCond %{HTTP_REFERER} !baidu.com [NC] RewriteCond %{HTTP_REFERER} !feedsky.com [NC] RewriteRule (.*)\.(jpg|jpeg|jpe|gif|bmp|png|wma|mp3|wav|avi|mp4|flv|swf)$ http://clin003.com/err.jpg [R=301,L,NC] #截获所有.jpg或.jpeg……请求,跳转到http://clin003.com/err.jpg提示错误的图片,注:该图片不能在原域名下,也不能在该.htaccess文件有效控制的文件夹中
4、不需要定义.htaccess文件
复制代码代码如下:
RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
重启Apache |