apache开启伪静态的方法分享

时间:2023-09-02 22:25:14 

环境:
系统 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.aspxhome.com/a.php跳转至b.aspxhome.com/b.php网页,访问www.aspxhome.com/news/index.php跳转至b.aspxhome.com/news/index.php网页

注意:不是使用HTML技术中的meta或者javascript方式,因为www.aspxhome.com/a.php这个文件并不存在,用的是Apache2.2服务器中的Rewrite模块。

修改 .htaccess或apche的配置文件httpd.conf文件,添加以下内容



RewriteEngine on
#开启Rewrite模块
RewriteRule (.*)\.php$ http://b.aspxhome.com/$1\.jsp [R=301,L,NC]
#截获所有.jsp请求,跳转到http://b.aspxhome.com/加上原来的请求再加上.php。R=301为301跳转,L为rewrite规则到此终止,NC为不区分大小写


2、域名跳转

如果请求为old.aspxhome.com下的所有URL,跳转至b.aspxhome.com



RewriteEngine on
#开启Rewrite模块
RewriteCond %{REMOTE_HOST} ^old.studenthome.cn$ [NC]
#针对host为old.aspxhome.com的主机做处理,^为开始字符,$为结尾字符
RewriteRule (.*) http://b.aspxhome.com/$1 [R=301,L,NC]


3、防盗链

如果本网站的图片不想让其它网站调用,可以在 .htaccess或者apche的配置文件httpd.conf文件中添加以下内容


RewriteEngine on
#开启Rewrite模块
RewriteCond %{HTTP_REFERER} !^$
#如果不是直接输入图片地址
RewriteCond %{HTTP_REFERER} !img.aspxhome.com$ [NC]
#且如果不是img.aspxhome.com所有子域名调用的
RewriteCond %{HTTP_REFERER} !img.aspxhome.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文件

在Apache2\conf\httpd.conf 最后一行添加

RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2

重启Apache

登陆后台开启全伪

标签:apache,伪静态
0
投稿

猜你喜欢

  • SEO也要具体问题具体分析

    2008-05-06 12:51:00
  • 识别常见的Web应用安全漏洞

    2008-04-15 11:18:00
  • 简略讲解对Linux服务器的四种入侵级别

    2009-09-09 08:51:00
  • VMware12.0安装Ubuntu14.04 LTS教程

    2021-11-11 05:04:49
  • 详解基于Centos7+Nginx+Tomcat8的负载均衡服务器的搭建

    2023-08-28 04:22:24
  • 用.htaccess实现二级域名功能教程

    2010-03-22 23:14:00
  • 当当网坚持10年终盈利 线上零售帝国模式凸显

    2009-11-27 07:18:00
  • 服务器iis权限安全设置

    2007-09-27 19:58:00
  • VirtualBox详细安装使用教程(图文)

    2021-11-09 03:26:50
  • 到底该用免费主机还是付费主机

    2010-03-22 21:34:00
  • 谷歌发布内部数据语言 比XML快近100倍

    2008-07-09 19:01:00
  • GOOGLE新广告工具:自助分析 及时优化

    2007-08-05 13:55:00
  • Centos7.2 系统上yum安装lamp环境

    2023-09-01 19:16:21
  • Windows 2000活动目录的安装与配置

    2010-05-18 18:30:00
  • VMware Workstation与Device/Credential Guard不兼容

    2022-04-29 17:53:32
  • GoDaddy:如何访问File Manager

    2010-05-01 12:58:00
  • 在Apache服务器上安装SSL支持的教程

    2023-11-03 10:04:19
  • Godaddy:从eNom转入域名

    2010-05-04 13:11:00
  • Linux中logrotate日志轮询操作总结

    2023-06-21 20:25:46
  • 朱则荣:控制Digg的50个网站

    2009-04-03 15:41:00
  • asp之家 网站运营 m.aspxhome.com