apache开启伪静态的方法分享
环境:
系统 windows
apache 2.2
加载rewrite模块:
在conf目录下httpd.conf中找到
loadmodule rewrite_module modules/mod_rewrite.so
这句,去掉前边的注释符号“#”,或添加这句。
允许在任何目录中使用“.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模块的简单应用:
rewrite的所有判断规则均基于perl风格的正则表达式,通过以下基础示例能写出符合自己跳转需求的代码。
1、请求跳转
目的是如果请求为.jsp文件,则跳转至其它域名访问。
例如:访问www.jb51.net/a.php跳转至b.jb51.net/b.php网页,访问www.jb51.net/news/index.php跳转至b.jb51.net/news/index.php网页
注意:不是使用html技术中的meta或者javascript方式,因为www.jb51.net/a.php这个文件并不存在,用的是apache2.2服务器中的rewrite模块。
修改 .htaccess或apche的配置文件httpd.conf文件,添加以下内容
rewriteengine on
#开启rewrite模块
rewriterule (.*)\.php$ http://b.jb51.net/$1\.jsp [r=301,l,nc]
#截获所有.jsp请求,跳转到http://b.jb51.net/加上原来的请求再加上.php。r=301为301跳转,l为rewrite规则到此终止,nc为不区分大小写
2、域名跳转
如果请求为old.jb51.net下的所有url,跳转至b.jb51.net
rewriteengine on
#开启rewrite模块
rewritecond %{remote_host} ^old.studenthome.cn$ [nc]
#针对host为old.jb51.net的主机做处理,^为开始字符,$为结尾字符
rewriterule (.*) http://b.jb51.net/$1 [r=301,l,nc]
3、防盗链
如果本网站的图片不想让其它网站调用,可以在 .htaccess或者apche的配置文件httpd.conf文件中添加以下内容
rewriteengine on
#开启rewrite模块
rewritecond %{http_referer} !^$
#如果不是直接输入图片地址
rewritecond %{http_referer} !img.jb51.net$ [nc]
#且如果不是img.jb51.net所有子域名调用的
rewritecond %{http_referer} !img.jb51.net/(.*)$ [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文件
在apache2\conf\httpd.conf 最后一行添加
rewriteengine on
rewriterule ^(.*)-htm-(.*)$ $1.php?$2
重启apache
登陆后台开启全伪
上一篇: 从用户沟通与服务看微信公众号运营
下一篇: Linux下对各种压缩文件的处理方法