server { listen 80; server_name all.bjed.com; root "F:\www\asdata"; location / { index index.html index.htm index.php; #autoindex on; if (!-e $request ...
分类:
Web程序 时间:
2017-03-01 16:55:58
阅读次数:
371
原文地址:http://bbs.qcloud.com/forum.php?mod=viewthread&tid=3545 apache/nginx伪静态在线转换:http://www.anilcetin.com/convert-apache-htaccess-to-nginx/ Apache 2.x ...
分类:
Web程序 时间:
2016-07-23 17:58:08
阅读次数:
248
以下操作实现当用户访问www.tetuhao.com/link.html时,显示的是www.tetuhao.com/shop/index.php?act=link的内容。同时网址显示的仍是www.tetuhao.com/link.html一:vim/usr/local/nginx/conf/nginx.conf在server块中加入以下内容location/{rewrite^(.*)/link\.html$$1/shop/ind..
分类:
其他好文 时间:
2016-02-25 17:13:06
阅读次数:
128
主要检查以下代码: location / { # Redirect everything that isn't a real file to index.php try_files $uri $uri/ /index.php?$args; } 完整代码: server { charset utf-8
分类:
其他好文 时间:
2016-02-04 18:31:32
阅读次数:
230
网上收集的一些常用的,要用的时候就仿照一下,或直接拿来用。 WordPress伪静态规则 location / { index index.html index.php; if (-f $request_filename/index.html){ rewrite (.*) $1/index.html
分类:
其他好文 时间:
2016-01-29 19:37:56
阅读次数:
256
错误日志::rewrite or internal redirection cycle while processing "/index.php/index.php/index.php/index.php/index.php/index.php/index.php/index.php/index.p...
分类:
其他好文 时间:
2015-12-05 00:20:38
阅读次数:
2930
nginx伪静态规则要将http://lovo.com/index.php?t=3用伪静态规则改写成http://lovo.com/t3.html,即可在nginx的conf/nginx.conf里面添加即可。在location/{}里添加,如:location/{root/var/www/html;indexindex.phpindex.htmlindex.htm;rewrite^(.*)/t(\d+)\.html$$1/index.ph..
分类:
其他好文 时间:
2015-12-03 15:53:43
阅读次数:
151
nginx.conf的server配置,当文件不存在时,就采用伪静态server{ listen 801; index index.html index.htm index.php; root D:/data/code/jsjh-admin/wwwroot; locatio...
分类:
Web程序 时间:
2015-12-02 17:55:04
阅读次数:
136
在原来apche网站数据转移到nginx服务器上伪静态功能打开出错,先看一下apache的伪静态格式apache伪静态:RewriteEngineonRewriteRule^(.*)/ask/([0-9]+)\.html$$1/ask/index.php?page=$2Nginx的配置rewrite^(.*)/ask/([0-9]+).html$$1/ask/index.php?page=$2last;其实就去掉Ru..
分类:
Web程序 时间:
2015-06-26 13:07:33
阅读次数:
154
前一段时间领导让我用nginx做个伪静态,实现效果如下:原URLhttp://www.domain.com/abc/def.jsp?x=1&y=2&z=3转换为http://www.domain.com/abc/def-1-2-3.html,当我访问原URL时,浏览器的地址栏里显示的是转换后的URl,但内容还是原来动态页面的内容。开始我是这么写的..
分类:
其他好文 时间:
2015-06-10 01:15:58
阅读次数:
127