路由请求nginx的
我从迁移我的Apache服务器Nginx的和有一个非常简单的.htaccess
规则:路由请求nginx的
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [QSA,L]
它背后的想法是引导每个请求的前端控制器( index.php
)。我正在尝试与Nginx一样。我用了一个在线转换器,使这个Nginx的位置块:
location/{
if (!-e $request_filename){
rewrite ^(.*)$ /index.php break;
}
}
,但是当我把它添加到我的网站的配置的Nginx刚刚吐出来的是PHP文件下载的源代码。作为参考,这里是整个配置文件:
我知道PHP的作品,仿佛我<?php phpinfo();
取出位置块,使文件能够正常工作。
任何帮助,将不胜感激。
这是怎么了我的路线一切index.php文件,包括子目录的请求,HTTP ARGS,等。
location/{
try_files $uri $uri/ /index.php?$args; #if doesn't exist, send it to index.php
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_intercept_errors on;
# By all means use a different server for the fcgi processes if you need to
fastcgi_pass 127.0.0.1:9000;
}
因此,例如,这些被发送到index.php文件:
http://foo.bar/something/
http://foo.bar/something/?something=1
虽然这些直接进入文件
http://foo.bar/someotherphp.php
http://foo.bar/assets/someimg.jpg
正则表达式的跳转结束:
location/{
index index.html index.php;
if (!-e $request_filename) {
rewrite ^.* /index.php break;
fastcgi_pass 127.0.0.1:9001;
}
}
不能完全确定什么是怎么回事。我改变了我的正则表达式来匹配这个答案,但是nginx仍然会抛出PHP的源代码。为什么在该位置块中的fastcgi_pass?不应该在'〜\ .php $'下面吗? – 2013-03-01 20:43:41
这是从我的配置,我们有不同的规则,每个位置。奇怪。 – 2013-03-01 20:47:31
对于Nginx,我并不是一个真正的专家,所以你的猜测和我的一样好。 :p – 2013-03-01 20:48:30
这corse允许任何现有的文件,如图像或其他php文件返回...它将任何请求都处理到index.php。 – Applehat 2013-03-01 20:52:18
谢谢,'try_files $ uri $ uri//index.php?$ args;'是一种享受! – 2013-03-01 22:05:28
用于使用try_files而不是if – mopsyd 2013-07-28 01:13:29