1℃
2012年02月01日
⁄ Nginx
⁄ 被围观 26,146次+
1、在相应nginx配置文件的server容器中添加下面的代码
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
location / {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
例如:
vi /usr/local/nginx/conf/nginx...
linux, nginx伪静态, WordPress, WordPress nginx阅读全文
0℃
2011年11月02日
⁄ Nginx
⁄ 被围观 11,816次+
在相应nginx配置文件的server中,添加如下代码
rewrite ^/(.*)-htm-(.*)$ /$1.php?$2;
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
例如:
vi /usr/local/nginx/conf/nginx.conf #编辑nginx配置文件
找到下面这行,在server_name localhost;后边一行添加上面的代码
server {
listen 80;
server_name localhost;
rewrite ^/(.*)-htm-(.*)$ /$1.php?$2;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.php in...
nginx伪静态, phpwind阅读全文
1℃
2011年11月02日
⁄ Nginx
⁄ 被围观 20,852次+
在相应nginx配置文件的server中,添加如下代码
rewrite ^([^\.]*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 last;
rewrite ^([^\.]*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
rewrite ^([^\.]*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^\.]*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
rewrite ...
Discuz!, nginx伪静态阅读全文