仓酷云
标题:
带来一篇Nginx伪静态设置和经常使用Rewrite伪静态划定规矩集锦
[打印本页]
作者:
若天明
时间:
2015-1-16 16:15
标题:
带来一篇Nginx伪静态设置和经常使用Rewrite伪静态划定规矩集锦
网络操作命令:ifconfig、ip、ping、netstat、telnet、ftp、route、rloginrcp、finger、mail、nslookup
nginx里利用伪静态是间接在nginx.conf中写划定规矩的,其实不必要像apache要开启写模块(mod_rewrite)才干举行伪静态。
nginx只必要翻开nginx.conf设置文件,在server内里写必要的划定规矩便可。
.
代码以下:
server
{
listen80;
server_namebbs.jb51.net;
indexindex.htmlindex.htmindex.php;
root/home/www/bbs;
error_page404/404.htm;#设置404毛病页面
location~.*.(php|php5)?$
{
#fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
includefcgi.conf;
}
#上面就是伪静态了
location/{
rewrite^(.*)/equip(d+).html$$1/index.php?m=content&c=index&a=lists&catid=$2last;
}
access_logaccess_logoff;
}
然后重启nginx服务器伪静态就失效了,这类保护起来非常不便利我们能够把它写在内部文件如bbs_nginx.conf中
在/home/www/bbs目次下创立bbs_nginx.conf文件并写进以下代码:
.
代码以下:
ocation/{
rewrite^(.*)/equip(d+).html$$1/index.php?m=content&c=index&a=lists&catid=$2last;
}
然后在下面的代码前面加上以下代码:
.
代码以下:
include/home/www/bbs/bbs_nginx.conf;
如许网站根目次中的bbs_nginx.conf伪静态划定规矩,便可完成独自办理。
上面是一个实例:
1.在利用.htaccess文件的目次下新建一个.htaccess文件,以下面一个Discuz论坛目次:
.
代码以下:
vim/var/www/html/jb51/bbs/.htaccess
2.在内里输出划定规矩,我这里输出Discuz的伪静态划定规矩(这里仅增添Discuz的伪静态划定规矩):
.
代码以下:
#nginxrewriterule
rewrite^(.*)/archiver/((fid|tid)-[w-]+.html)$$1/archiver/index.php?$2last;
rewrite^(.*)/forum-([0-9]+)-([0-9]+).html$$1/forumdisplay.php?fid=$2&page=$3last;
rewrite^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html$$1/viewthread.php?tid=$2&extra=page%3D$4&page=$3last;
rewrite^(.*)/profile-(username|uid)-(.+).html$$1/viewpro.php?$2=$3last;
rewrite^(.*)/space-(username|uid)-(.+).html$$1/space.php?$2=$3last;
rewrite^(.*)/tag-(.+).html$$1/tag.php?name=$2last;
#endnginxrewriterule
wq保留加入。
3.修正nginx设置文件:
.
代码以下:
vim/etc/nginx/nginx.conf
4.在必要增加伪静态的假造主机的server{}中引进.htaccess文件:
.
代码以下:
include/var/www/html/jb51/bbs/.htaccess;(备注:把路径改成你.htaccess文件的详细地位)
wq保留加入。
5.从头加载nginx设置文件:
.
代码以下:
/etc/init.d/nginxreload
Nginx经常使用Rewrite伪静态划定规矩:
伪静态划定规矩是我们做伪静态的一个十分重的参数了,假如我们能了解得越多就能够疾速的写出最优的伪静态代码了,上面给人人收拾了一些例子,但愿能给你有匡助。
今天志内容来自互联网战争日利用履历,收拾一下便利往后参考。
正则表达式婚配,个中:
.
代码以下:
*~为辨别巨细写婚配
*~*为不辨别巨细写婚配
*!~和!~*分离为辨别巨细写不婚配及不辨别巨细写不婚配
文件及目次婚配,个中:
*-f和!-f用来判别是不是存在文件
*-d和!-d用来判别是不是存在目次
*-e和!-e用来判别是不是存在文件或目次
*-x和!-x用来判别文件是不是可实行
flag标志有:
*last相称于Apache里的[L]标志,暗示完成rewrite
*break停止婚配,不再婚配前面的划定规矩
*redirect前往302一时重定向地点栏会显现跳转后的地点
*permanent前往301永世重定向地点栏会显现跳转后的地点
一些可用的全局变量有,能够用做前提判别(待补全)
.
代码以下:
$args
$content_length
$content_type
$document_root
$document_uri
$host
$http_user_agent
$http_cookie
$limit_rate
$request_body_file
$request_method
$remote_addr
$remote_port
$remote_user
$request_filename
$request_uri
$query_string
$scheme
$server_protocol
$server_addr
$server_name
$server_port
$uri
分离QeePHP的例子
.
代码以下:
if(!-d$request_filename){
rewrite^/([a-z-A-Z]+)/([a-z-A-Z]+)/?(.*)$/index.php?namespace=user&controller=$1&action=$2&$3last;
rewrite^/([a-z-A-Z]+)/?$/index.php?namespace=user&controller=$1last;
break;
多目次转成参数
.
代码以下:
abc.domian.com/sort/2=>abc.domian.com/index.php?act=sort&name=abc&id=2
if($host~*(.*)/.domain/.com){
set$sub_name$1;
rewrite^/sort//(/d+)//?$/index.php?act=sort&cid=$sub_name&id=$1last;
}
目次对调
.
代码以下:
/123456/xxxx->/xxxx?id=123456
rewrite^/(/d+)/(.+)//$2?id=$1last;
比方上面设定nginx在用户利用ie的利用重定向到/nginx-ie目次下:
if($http_user_agent~MSIE){
rewrite^(.*)$/nginx-ie/$1break;
}
目次主动加“/”
.
代码以下:
if(-d$request_filename){
rewrite^/(.*)([^/])$http://$host/$1$2/permanent;
}
克制htaccess
.
代码以下:
location~//.ht{
denyall;
}
克制多个目次
.
代码以下:
location~^/(cron|templates)/{
denyall;
break;
}
克制以/data开首的文件
能够克制/data/下多级目次下.log.txt等哀求;
.
代码以下:
location~^/data{
denyall;
}
克制单个目次
不克不及克制.log.txt能哀求
.
代码以下:
location/searchword/cron/{
denyall;
}
克制单个文件
.
代码以下:
location~/data/sql/data.sql{
denyall;
}
给favicon.ico和robots.txt设置过时工夫;
这里为favicon.ico为99天,robots.txt为7天其实不纪录404毛病日记
.
代码以下:
location~(favicon.ico){
log_not_foundoff;
expires99d;
break;
}
location~(robots.txt){
log_not_foundoff;
expires7d;
break;
}
设定某个文件的过时工夫;这里为600秒,其实不纪录会见日记
.
代码以下:
location^~/html/scripts/loadhead_1.js{
access_logoff;
root/opt/lampp/htdocs/web;
expires600;
break;
}
文件反盗链并设置过时工夫
这里的return412为自界说的http形态码,默许为403,便利找出准确的盗链的哀求
.
代码以下:
“rewrite^/http://www.ckuyun.com/jb51.gif;”显现一张防盗链图片
“access_logoff;”不纪录会见日记,加重压力
“expires3d”一切文件3天的扫瞄器缓存
location~*^.+/.(jpg|jpeg|gif|png|swf|rar|zip|css|js)${
valid_referersnoneblocked*.jb51.net*.jbzj.netlocalhost1.1.1.1;
if($invalid_referer){
rewrite^/http://www.ckuyun.com/jb51.gif;
return412;
break;
}
access_logoff;
root/opt/lampp/htdocs/web;
expires3d;
break;
}
只同意流动ip会见网站,并加上暗码
.
代码以下:
root/opt/htdocs/www;
allow208.97.167.194;
allow222.33.1.2;
allow231.152.49.4;
denyall;
auth_basic“C1G_ADMIN”;
auth_basic_user_filehtpasswd;
将多级目次下的文件转成一个文件
,加强搜索引擎优化效果
.
代码以下:
/job-123-456-789.html指向/job/123/456/789.html
rewrite^/job-([0-9]+)-([0-9]+)-([0-9]+)/.html$/job/$1/$2/jobshow_$3.htmllast;
将根目次下某个文件夹指向2级目次
如/shanghaijob/指向/area/shanghai/
假如你将last改成permanent,那末扫瞄器地点栏显是/location/shanghai/
.
代码以下:
rewrite^/([0-9a-z]+)job/(.*)$/area/$1/$2last;
下面例子有个成绩是会见/shanghai时将不会婚配
.
代码以下:
rewrite^/([0-9a-z]+)job$/area/$1/last;
rewrite^/([0-9a-z]+)job/(.*)$/area/$1/$2last;
如许/shanghai也能够会见了,但页面中的绝对链接没法利用,
如./list_1.html实在地点是/area/shanghia/list_1.html会酿成/list_1.html,导至没法会见。
那我加上主动跳转也是不可咯
.
代码以下:
(-d$request_filename)它有个前提是必须为实在目次,而我的rewrite不是的,以是没无效果
if(-d$request_filename){
rewrite^/(.*)([^/])$http://$host/$1$2/permanent;
}
晓得缘故原由后就好办了,让我手动跳转吧
.
代码以下:
rewrite^/([0-9a-z]+)job$/$1job/permanent;
rewrite^/([0-9a-z]+)job/(.*)$/area/$1/$2last;
文件和目次不存在的时分重定向:
.
代码以下:
if(!-e$request_filename){
proxy_passhttp://127.0.0.1;
}
域名跳转
.
代码以下:
server
{
listen80;
server_namejump.c1gstudio.com;
indexindex.htmlindex.htmindex.php;
root/opt/lampp/htdocs/www;
rewrite^/http://www.ckuyun.com/;
access_logoff;
}
多域名转向
.
代码以下:
server_namewww.c1gstudio.comwww.c1gstudio.net;
indexindex.htmlindex.htmindex.php;
root/opt/lampp/htdocs;
if($host~“c1gstudio/.net”){
rewrite^(.*)http://www.ckuyun.com$1permanent;
}
三级域名跳转
.
代码以下:
if($http_host~*“^(.*)/.i/.c1gstudio/.com$”){
rewrite^(.*)http://www.ckuyun.com$1;
break;
}
域名镜像
.
代码以下:
server
{
listen80;
server_namemirror.c1gstudio.com;
indexindex.htmlindex.htmindex.php;
root/opt/lampp/htdocs/www;
rewrite^/(.*)http://www.ckuyun.com/$1last;
access_logoff;
}
某个子目次作镜像
.
代码以下:
location^~/php{
rewrite^.+http://www.ckuyun.com/last;
break;
}
discuzucenterhome(uchome)rewrite
.
代码以下:
rewrite^/(space|network)-(.+)/.html$/$1.php?rewrite=$2last;
rewrite^/(space|network)/.html$/$1.phplast;
rewrite^/([0-9]+)$/space.php?uid=$1last;
discuz7rewrite
rewrite^(.*)/archiver/((fid|tid)-[/w/-]+/.html)$$1/archiver/index.php?$2last;
rewrite^(.*)/forum-([0-9]+)-([0-9]+)/.html$$1/forumdisplay.php?fid=$2&page=$3last;
rewrite^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)/.html$$1/viewthread.php?tid=$2&extra=page/%3D$4&page=$3last;
rewrite^(.*)/profile-(username|uid)-(.+)/.html$$1/viewpro.php?$2=$3last;
rewrite^(.*)/space-(username|uid)-(.+)/.html$$1/space.php?$2=$3last;
rewrite^(.*)/tag-(.+)/.html$$1/tag.php?name=$2last;
给discuz某版块独自设置域名
server_namebbs.jb51.netnews.jb51.net;
location=/{
if($http_host~news/.jb51.net$){
rewrite^.+http://news.jb51.net/forum-831-1.htmllast;
break;
}
}
discuzucenter头像rewrite优化
location^~/ucenter{
location~.*/.php?$
{
#fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
includefcgi.conf;
}
location/ucenter/data/avatar{
log_not_foundoff;
access_logoff;
location~/(.*)_big/.jpg${
error_page404/ucenter/images/noavatar_big.gif;
}
location~/(.*)_middle/.jpg${
error_page404/ucenter/images/noavatar_middle.gif;
}
location~/(.*)_small/.jpg${
error_page404/ucenter/images/noavatar_small.gif;
}
expires300;
break;
}
}
jspacerewrite
location~.*/.php?$
{
#fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
includefcgi.conf;
}
location~*^/index.php/
{
rewrite^/index.php/(.*)/index.php?$1break;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
includefcgi.conf;
}
附如今经常使用cms交换
WordPress伪静态划定规矩:
.
代码以下:
location/{
indexindex.htmlindex.php;
if(-f$request_filename/index.html){
rewrite(.*)$1/index.htmlbreak;
}
if(-f$request_filename/index.php){
rewrite(.*)$1/index.php;
}
if(!-f$request_filename){
rewrite(.*)/index.php;
}
}
PHPCMS伪静态划定规矩:
.
代码以下:
location/{
###以下为PHPCMS伪静态化rewrite法例
rewrite^(.*)show-([0-9]+)-([0-9]+).html$$1/show.php?itemid=$2&page=$3;
rewrite^(.*)list-([0-9]+)-([0-9]+).html$$1/list.php?catid=$2&page=$3;
rewrite^(.*)show-([0-9]+).html$$1/show.php?specialid=$2;
####以下为PHPWind伪静态化rewrite法例
rewrite^(.*)-htm-(.*)$$1.php?$2last;
rewrite^(.*)/simple/([a-z0-9\_]+.html)$$1/simple/index.php?$2last;
}
ECSHOP伪静态划定规矩:
.
代码以下:
if(!-e$request_filename)
{
rewrite"^/index.html"/index.phplast;
rewrite"^/category$"/index.phplast;
rewrite"^/feed-c([0-9]+).xml$”/feed.php?cat=$1last;
rewrite“^/feed-b([0-9]+).xml$”/feed.php?brand=$1last;
rewrite“^/feed.xml$”/feed.phplast;
rewrite“^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$”/category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8last;
rewrite“^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)(.*).html$”/category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5last;
rewrite“^/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$”/category.php?id=$1&brand=$2&page=$3&sort=$4&order=$5last;
rewrite“^/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*).html$”/category.php?id=$1&brand=$2&page=$3last;
rewrite“^/category-([0-9]+)-b([0-9]+)(.*).html$”/category.php?id=$1&brand=$2last;
rewrite“^/category-([0-9]+)(.*).html$”/category.php?id=$1last;
rewrite“^/goods-([0-9]+)(.*).html”/goods.php?id=$1last;
rewrite“^/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$”/article_cat.php?id=$1&page=$2&sort=$3&order=$4last;
rewrite“^/article_cat-([0-9]+)-([0-9]+)(.*).html$”/article_cat.php?id=$1&page=$2last;
rewrite“^/article_cat-([0-9]+)(.*).html$”/article_cat.php?id=$1last;
rewrite“^/article-([0-9]+)(.*).html$”/article.php?id=$1last;
rewrite“^/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+).html”/brand.php?id=$1&cat=$2&page=$3&sort=$4&order=$5last;
rewrite“^/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*).html”/brand.php?id=$1&cat=$2&page=$3last;
rewrite“^/brand-([0-9]+)-c([0-9]+)(.*).html”/brand.php?id=$1&cat=$2last;
rewrite“^/brand-([0-9]+)(.*).html”/brand.php?id=$1last;
rewrite“^/tag-(.*).html”/search.php?keywords=$1last;
rewrite“^/snatch-([0-9]+).html$”/snatch.php?id=$1last;
rewrite“^/group_buy-([0-9]+).html$”/group_buy.php?act=view&id=$1last;
rewrite“^/auction-([0-9]+).html$”/auction.php?act=view&id=$1last;
rewrite“^/exchange-id([0-9]+)(.*).html$”/exchange.php?id=$1&act=viewlast;
rewrite“^/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$”/exchange.php?cat_id=$1&integral_min=$2&integral_max=$3&page=$4&sort=$5&order=$6last;
rewrite^/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$”/exchange.php?cat_id=$1&page=$2&sort=$3&order=$4last;
rewrite“^/exchange-([0-9]+)-([0-9]+)(.*).html$”/exchange.php?cat_id=$1&page=$2last;
rewrite“^/exchange-([0-9]+)(.*).html$”/exchange.php?cat_id=$1last;
}
SHOPEX伪静态划定规矩:
.
代码以下:
location/{
if(!-e$request_filename){
rewrite^/(.+.(html|xml|json|htm|php|jsp|asp|shtml))$/index.php?$1last;
}
}
SaBlog2.0:
.
代码以下:
#只带月份的回档
rewrite"^/date/([0-9]{6})/?([0-9]+)?/?$"/index.php?action=article&setdate=$1&page=$2last;
#无分类翻页
rewrite^/page/([0-9]+)?/?$/index.php?action=article&page=$1last;
#分类
rewrite^/category/([0-9]+)/?([0-9]+)?/?$/index.php?action=article&cid=$1&page=$2last;
rewrite^/category/([^/]+)/?([0-9]+)?/?$/index.php?action=article&curl=$1&page=$2last;
#回档、初级搜索
rewrite^/(archives|search|article|links)/?$/index.php?action=$1last;
#全数品评、标签列表、援用列表带分页
rewrite^/(comments|tagslist|trackbacks|article)/?([0-9]+)?/?$/index.php?action=$1&page=$2last;
#tags
rewrite^/tag/([^/]+)/?([0-9]+)?/?$/index.php?action=article&item=$1&page=$2last;
#文章
rewrite^/archives/([0-9]+)/?([0-9]+)?/?$/index.php?action=show&id=$1&page=$2last;
#RSSrewrite^/rss/([0-9]+)?/?$/rss.php?cid=$1last;
rewrite^/rss/([^/]+)/?$/rss.php?url=$1last;
#用户rewrite^/uid/([0-9]+)/?([0-9]+)?/?$/index.php?action=article&uid=$1&page=$2last;
rewrite^/user/([^/]+)/?([0-9]+)?/?$/index.php?action=article&user=$1&page=$2last;
#地图文件
rewritesitemap.xmlsitemap.phplast;
#自定义链接
rewrite^(.*)/([0-9a-zA-Z-\_]+)/?([0-9]+)?/?$$1/index.php?action=show&alias=$2&page=$3last;
Discuz7伪静态划定规矩:
.
代码以下:
rewrite^/archiver/((fid|tid)-[w-]+.html)$/archiver/index.php?$1last;
rewrite^/forum-([0-9]+)-([0-9]+).html$/forumdisplay.php?fid=$1&page=$2last;
rewrite^/thread-([0-9]+)-([0-9]+)-([0-9]+).html$/viewthread.php?tid=$1&extra=page\%3D$3&page=$2last;
rewrite^/space-(username|uid)-(.+).html$/space.php?$1=$2last;
rewrite^/tag-(.+).html$/tag.php?name=$1last;
Typecho:
.
代码以下:
location/{
indexindex.htmlindex.php;
if(-f$request_filename/index.html){
rewrite(.*)$1/index.htmlbreak;
}
if(-f$request_filename/index.php){
rewrite(.*)$1/index.php;
}
if(!-f$request_filename){
rewrite(.*)/index.php;
}
}
实例:shopex启用伪静态
.
代码以下:
……
location/
{
if(!-e$request_filename){
rewrite^/(.*)$/index.php?$1last;
}
}
……
Linux的常用命令find,察看man文档,初学者一定会觉得太复杂而不原意用,但是你一旦学会就爱不释手。
作者:
只想知道
时间:
2015-1-18 16:34
以前觉得Linux就跟dos一样,全是用命令窗口,相对于窗口界面来说多麻烦呀。
作者:
深爱那片海
时间:
2015-1-27 07:10
硬盘安装及光盘安装,清楚了解安装Linux应注意的有关问题,如安装Linux应在最后一个分区内,至少分二个分区。
作者:
兰色精灵
时间:
2015-2-5 05:32
直到学习Linux这门课以后,我才知道,原来我错了。?
作者:
小女巫
时间:
2015-2-11 07:08
选择交流平台,如QQ群,网站论坛等。
作者:
山那边是海
时间:
2015-3-2 00:06
随着实验课程的结束,理论课也该结束了,说实话教OS的这两位老师是我们遇到过的不错的老师(这话放这可能不太恰当).
作者:
若天明
时间:
2015-3-11 01:32
我们这一代90后,从小接触的是windows98,家里条件好的自己有电脑装的是2000,后来又有了XP,上大学时又有了win7。
作者:
admin
时间:
2015-3-17 18:11
当然你不需搭建所有服务,可以慢慢来。自己多动手,不要非等着别人帮你解决问题。
作者:
若相依
时间:
2015-3-24 20:50
任何一个叫做操作系统的东西都是这样子构成的:内核+用户界面+一般应用程序。
欢迎光临 仓酷云 (http://ckuyun.com/)
Powered by Discuz! X3.2