我正在将我的服务器从Apache迁移到Nginx并拥有这个非常简单的.htaccess
规则:
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();
创建了一个文件正常工作。
任何帮助都将不胜感激。
答案 0 :(得分:12)
这是我将所有内容路由到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
答案 1 :(得分:1)
跳过正则表达式结束:
location / {
index index.html index.php;
if (!-e $request_filename) {
rewrite ^.* /index.php break;
fastcgi_pass 127.0.0.1:9001;
}
}