本文系统:Centos6.5_x64三台主机:nginx主机,hostname:master.lansgg.comIP:192.168.10.128apache主机,hostname:client1.lansgg.comIP:192.168.10.129一、nginx地址重定向二、nginx反向代理1、地址重定向:是指当使用者浏览某个网址时,将他导向到另一个网址的技术。常用在..
分类:
Web程序 时间:
2014-11-11 14:34:46
阅读次数:
1299
Rewirte主要的功能就是实现URL的跳转,它的正则表达式是基于Perl语言。可基于服务器级的(httpd.conf)和目录级的(.htaccess)两种方式。如果要想用到rewrite模块,必须先安装或加载rewrite模块。方法有两种一种是编译apache的时候就直接安装rewrite模块,别...
分类:
其他好文 时间:
2014-11-11 10:47:52
阅读次数:
135
尽管apache与nginx的rewirte模块都声明基于perl正则,但实际使用中还是有所不同,特别是nginx。 在apache中,在server全局配置的httpd.conf文件中使用全局变量%{…}判断并不稳妥,当我使用 %{REQUEST_FILENAME}判断请求是否为文件时就出错了。无...
分类:
Web程序 时间:
2014-11-08 16:38:56
阅读次数:
212
通常利用Apache的rewrite模块对 URL 进行重写的时候, rewrite规则会写在 .htaccess 文件里。但要使 apache 能够正常的读取.htaccess 文件的内容,就必须对.htaccess 所在目录进行配置。从安全性考虑,根目录的AllowOverride属性一般都配置...
分类:
Web程序 时间:
2014-11-07 18:41:55
阅读次数:
155
方法如下:1. 在需要使用.htaccess文件的目录下新建一个.htaccess文件,vim /var/www/html/.htaccess2. 在里面输入规则,我这里输入Discuz的伪静态规则:# nginx rewrite rulerewrite /!.(js|gif|jpg|png|css...
分类:
数据库 时间:
2014-11-07 12:33:54
阅读次数:
130
第一步:打开Apache中的配置文件:httped.conf,将mod.rewrite.so这条注释去除。第二步:将AllowOverride Node修改为AllowOverride All第三步:在文件根目录中创建.htaccess 在文件中写入RewriteEngine onRewrit...
分类:
Web程序 时间:
2014-11-04 22:39:44
阅读次数:
252
原文地址:http://www.cnblogs.com/birdshover/archive/2009/08/24/1552614.html使用ASP.NET MVC框架,创建默认项目,第一直观感觉就是地址都是Rewrite过的。对源码和配置文件稍加分析不难看出,MVC使用了httpModules来...
分类:
Web程序 时间:
2014-11-04 16:43:58
阅读次数:
271
kohana nginx的配置
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?kohana_uri=/$1 last;
}
index index.php index.html...
分类:
其他好文 时间:
2014-11-03 17:43:26
阅读次数:
170
server{listen80default;server_name_;indexindex.htmlindex.htmindex.php;#root/alidata/www/default;root/alidata/www/sandbox_pro/sandbox;#rewrite^/box/list/index.php?r=box/list;#rewrite^/(.*)$/index.php?r=$1;if(-f$request_filename/index.php){rewrite(.*)$1/index..
分类:
Web程序 时间:
2014-11-03 16:34:12
阅读次数:
253
首首先我们要修改httpd.ini后请重启IIS把以下内容保存为httpd.ini即可:[ISAPI_Rewrite]CacheClockRate 3600RepeatLimit 32#上面三行不要改动,以下为规则设置RewriteRule /([0-9,a-z]*)/(\d+).html /$1/...
分类:
其他好文 时间:
2014-11-02 17:45:52
阅读次数:
152