nginx和apache下的url rewrite

时间:2022-05-19 18:19:09

将服务器上面的数据同步到本地之后,发现打开首页显示不正常,本地服务器是apache,经过打开url rewrite之后本地首页正常显示。

原因是phpwind本身支持了url rewrite的功能,但是本地的apache服务器没有开启这项功能,导致了首页的排版紊乱。

远程服务器用的的nginx和本地的apache的url rewrite配置不能通用,借此机会学习下,url rewrite的功能。

url rewrite是服务器的一个模块,功能包括,配置一些访问的网址的重写,其中的语句规则是基于正则表达式,建议先看我的另一篇博客正则表式http://www.cnblogs.com/yiluxiuxing/p/4307488.html

其中涉及到的变量都是基于服务器上(apache或者nginx)通用的变量,具体一些变量详细解释以及nginx下rewrite的一些配置实例请参考http://www.cnblogs.com/yiluxiuxing/p/4309365.html

比如为了使网址更加友好,可以将用户看到的网址www.simple.com/ming-tian-shi-ge-hao-tian-qi.html重定位到www.simple.com/ming/tian/shi/ge/hao/tian/qi.html,这样用户看到的就是一个网址而不是一个个的文件夹。

其他还有很多有用的功能,比如,防止别的网站引用你网站的图片,如果别人使用的是你网站的图片的话,那么占用的是你的网站的流量,但是却不能给你带来访问量

还比如可以自己写一个友好的404页面,如果发生404错误的时候就将页面定位到自己写的404页面。

还可以将css文件还有js文件设置保存在用户浏览器上面的时间,加快网页的加载速度。

下面是nginx上面的rewrite配置文件

 server {
listen 80;
server_name www.simple.com ;
root /home/www/simple;
index index.php index.html index.htm;
charset utf-8;
access_log logs/simple.access.log main;
#如果请求主机字段不等于'www.simple.com'则重定向到http://www.simple.com/*
if ( $host != 'www.simple.com' ) {
rewrite ^/(.*)$ http://www.simple.com/$1 permanent;
}
#如果当前请求的文件路径不存在,将出现/tool/的网址重定向到/tool/index.php,将出现kisswall/的网址重定向到/kisswall/index.php
if ( !-e $request_filename ) {
rewrite ^(.*)tool/(.*)$ $1tool/index.php last;
rewrite ^(.*)kisswall/(.*)$ $1kisswall/index.php last;
}
location / {
directio 1;
output_buffers 1 128k;
index index.php index.html index.htm ;
rewrite ^(.*?)-(.*)$ $1.php?$2;
}
#指定404错误页面
error_page 404 /404.html;
location = /50x.html {
}
#设置js、css过期时间
location ~ \.(css|js)$ {
expires 1w;
}
#防盗链
location ~ \.(jpg|jpeg|png|gif|swf|ico)$ {
valid_referers none bloacked *.erqilu.com *.renren.com *.weibo.com;
if ( $invalid_referer ) {
return 404;
}
expires max;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /$document_root$fastcgi_script_name;
include fastcgi_params;
}
#禁止htaccess
location ~ /\.ht {
deny all;
}
#将出现/min/的网址定位到/min/index.php?*
location /min/{
rewrite /min/([a-z]=.*) /min/index.php?$1 last;
#expires 1w;
}
}

与之一部分对应的.htaccess文件

如果访问的网址不是“localhost”或者“127.0.0.1”则跳转到http://localhost/
RewriteEngine On
RewriteCond %{HTTP_HOST} !^localhost [NC]
RewriteCond %{HTTP_HOST} !^127.0.0.1 [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*) http://localhost/$1 [L]

RewriteEngine on
RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule ^.*$ - [L] #如果访问的网址文件不存在,则如果网址中出现/tool/则将网址重写为$1tool/index.php 网址中若出现/kisswall/同理
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)tool/(.*)$ $1tool/index.php [L]
RewriteRule ^(.*)kisswall/(.*)$ $1kisswall/index.php [L]

RewriteEngine On
DirectoryIndex index.php index.html index.htm
#将以-分割的网址转换为$1.php?$2的格式
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
RewriteCond %{HTTP_HOST} !^localhost [NC]
RewriteRule ^(.*) http://localhost/$1 [L]
#定义404页面
ErrorDocument 404 /404.html
#防盗链
RewriteBase /
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://localhost/.*$ [NC]
RewriteRule .(jpg|jpeg|png|gif|swf|ico)$ - [R=302,L]

对照可参考apache和nginx配置的异同,

其中nginx的url rewrite配置文件存放的位置是:usr/local/nginx/conf