Linux下,nginx伪静态规则写法

Linux下,nginx伪静态规则写法,第1张

location / {

rewrite wx-hot-id-88.html index.php?m=wx&a=hot&id=88 break

}

你这种是固定,比如说其中有不固定的就这样写

rewrite ([a-z]{2})-hot-id-([0-9]+).html index.php?m=$1&a=hot&id=$2 break

静态的作用就是让百度收录你的网站的时候的URL是html样式,但是当用户通过百度访问过来的时候 ,自动跳转到正常的网站地址。

一、在linux主机下实现伪静态

确认虚拟主机是否支持rewrite伪静态.htaccess文件。添加.htaccess

文件,把htaccess

文件放在网站根目录。

二、在win主机下实现伪静态

确认虚拟主机是否支持rewrite伪静态httpd.ini文件。添加httpd.ini文件,把httpd.ini文件放入网站根目录中。

具体伪静态规则看各自网站程序规则。

发布帝国会员空间的伪静态,其实简单到弊,关键是你开始想做

nginx版本,用于自己的独立服务器,要自己修改域名配置

rewrite

^([^\.])/my([0-9]+)/$

$1/e/space/index.php?userid=$2

last

rewrite

^([^\.])/my([0-9]+)/(UserInfo|gbook)\.html$

$1/e/space/$3.php?userid=$2

last

rewrite

^([^\.])/my([0-9]+)/list-([0-9]+)\.html$

$1/e/space/list.php?userid=$2&mid=$3

last

rewrite

^([^\.])/my([0-9]+)/list-([0-9]+)-([0-9]+)\.html$

$1/e/space/list.php?userid=$2&mid=$3&page=$4

last

apache版本,用于虚拟主机,一般更新个.htaccess文件到你的网站根目录就可以了(当然要空间支持.htaccess)

RewriteEngine

On

RewriteBase

/

RewriteCond

%{QUERY_STRING}

^(.*)$

RewriteRule

^my([0-9]+)/$

e/space/index.php?userid=$1&%1

RewriteCond

%{QUERY_STRING}

^(.*)$

RewriteRule

^my([0-9]+)/(UserInfo|gbook)\.html$

e/space/$2.php?userid=$1&%1

RewriteCond

%{QUERY_STRING}

^(.*)$

RewriteRule

^my([0-9]+)/list-([0-9]+)\.html$

e/space/list.php?userid=$1&mid=$2&%1

RewriteCond

%{QUERY_STRING}

^(.*)$

RewriteRule

^my([0-9]+)/list-([0-9]+)-([0-9]+)\.html$

e/space/list.php?userid=$1&mid=$2&page=$3&%1

以上设置是基于帝国会员空间的默认版本,主要模式是

http://你的域名/my+会员ID/

的静态链接形式,my可以改自己的;

可以改成

http://你的域名/my/会员注册名/

的形式,这时你要禁止会员用中文注册,

第一行分别改成

nginx

rewrite

^([^\.]*)/my/(.+)/$

$1/e/space/index.php?username=$2

last

apache

RewriteRule

^my/(.+)/$

e/space/index.php?username=$1&%1

其他下面各行要分别按第一行的改动修改一下。

rewrite ^([^\.]*)/vodlist-([0-9]+)\.html$ $1/vodlist/index.php?id=$2 last

rewrite ^([^\.]*)/vodlist-([0-9]+)-([0-9]+)\.html$ $1/vodlist/index.php?id=$2&page=$3 last

rewrite ^([^\.]*)/vod-([0-9]+)\.html$ $1/vod/index.php?id=$2 last

rewrite ^([^\.]*)/vodplay-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/vodplay/index.php?id=$2&sort=$3&num=$4 last

if (!-e $request_filename) { return 404}

播放页列表第一页:vodlist-{id}.html

播放页列表的第二页:vodlist-{id}-{page}.html

电影页:vod-{id}.html

电影播放页:vodplay-{id}-{sort}-{num}.html


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/342663.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-06
下一篇2023-05-06

发表评论

登录后才能评论

评论列表(0条)

    保存