1、如何隐藏入口文件。 location / { index index.html index.htm index.php l.php; try_files $uri $uri/ /index.php?$query_string; if (!-e $request_filename) { rewri ...
分类:
其他好文 时间:
2016-07-06 16:32:07
阅读次数:
178
LNMP上各个版本pathinfo各个版本的设置基本一样:lnmp v1.1上,修改对应虚拟主机的配置文件去掉#include pathinfo.conf前面的#,把try_files $uri =404; 前面加上# 注释掉。1.2,1.3上,修改对应虚拟主机的配置文件将include enabl ...
分类:
Web程序 时间:
2016-07-01 15:58:48
阅读次数:
227
一、Nginx反向代理配置: 1、虚拟主机配置 复制代码代码如下: location / { try_files $uri @apache;} location @apache {internal; proxy_pass http://127.0.0.1:8080; include proxy.co ...
分类:
Web程序 时间:
2016-05-25 18:13:07
阅读次数:
231
以 try_files $uri $uri/ /index.php; 为例,当用户请求 http://servers.blog.ustc.edu.cn/example 时,这里的 $uri 就是 /example。try_files 会到硬盘里尝试找这个文件。如果存在名为 /$root/exampl ...
分类:
其他好文 时间:
2016-05-13 23:05:34
阅读次数:
274
location / { index index.html index.htm index.php l.php; autoindex on; try_files $uri $uri/ /index.php?q=$uri&$args; } ...
分类:
其他好文 时间:
2016-04-26 12:14:32
阅读次数:
154
主要检查以下代码: 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
nginx 下conf/nginx.conf 或者自己的vhosts更改以前的参数location/{root html;indexindex.htmlindex.htmindex.php;try_files$uri/index.php$uri;if(!-e$request_filename)...
分类:
Web程序 时间:
2016-01-24 16:44:33
阅读次数:
135
原来的配置是这样的: location / { try_files $uri $uri/ /index.php; index index.html index.htm index.php; } location ...
分类:
其他好文 时间:
2015-12-21 20:20:56
阅读次数:
139
默认的lnmp没有开启pathinfo模式,但很多框架需要用到。cd /usr/local/nginx/confvim enable-php.conflocation ~ [^/]\.php(/|$){ # comment try_files $uri =404; to enable pathin....
分类:
其他好文 时间:
2015-11-22 20:21:00
阅读次数:
167
在配置Phalcon 的时候,配置的使用是: server {
listen 80;
server_name localhost.dev;
index index.php index.html index.htm;
set $root_path ‘/var/www/phalcon/public‘;
root $root_path;
location ...
分类:
其他好文 时间:
2015-07-31 10:57:52
阅读次数:
473