72

在我的 apache 配置中,我有以下简单的重写规则

  1. 除非文件存在将重写为 index.php
  2. 在网址上,您永远不会看到文件扩展名 (.php)

如何在 nginx 中重写它?

#
# Redirect all to index.php
#
RewriteEngine On

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_URI} (/[^.]*|\.)$ [NC]
RewriteRule .* index.php [L]

这是我的 nginx 服务器块现在的样子,但它不起作用:(

root /home/user/www;
index index.php;

# Make site accessible from http://localhost/
server_name some-domain.dev;


###############################################################
# exclude /favicon.ico from logs
location = /favicon.ico {
    log_not_found off;
    access_log off;
}   

##############################################################
# Disable logging for robots.txt
location = /robots.txt {
    allow all;
    log_not_found off;
    access_log off;
}   

##############################################################
# Deny all attempts to access hidden files such as 
# .htaccess, .htpasswd, .DS_Store (Mac).
location ~ /\. {
    deny all;
    access_log off;
    log_not_found off;
}   

##############################################################
#   
location / { 
    include /etc/nginx/fastcgi_params;
    fastcgi_param   SCRIPT_FILENAME  $document_root/index.php$args;
    fastcgi_pass    127.0.0.1:9000;
}   

###############################################################
# serve static files directly
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico)$ {
    access_log off;
    expires    30d;
}   

###############################################################
# redirect server error pages to the static page /50x.html
error_page   500 502 503 504  /50x.html;
location = /50x.html {
    root html;
}   

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#   
location ~ \.php$ {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    # With php5-cgi alone:
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    include fastcgi_params;
}
4

8 回答 8

132

我已经尝试过了,并成功获得了我的索引页。当我在我的站点配置文件中添加此代码时:

location / {
    try_files $uri $uri/ /index.php;
}

在配置文件本身内部解释了这些是配置的步骤

首先尝试将请求作为文件,然后作为目录,然后回退到 index.html

就我而言,它是index.php,因为我通过 php 代码提供页面。

于 2013-04-23T13:53:23.480 回答
63

要传递 get 变量,请使用$args

location / {
    try_files $uri $uri/ /index.php?$args;
}
于 2014-02-12T15:15:16.437 回答
40

1 除非文件存在将重写为 index.php

将以下内容添加到您的location ~ \.php$

try_files = $uri @missing;

这将首先尝试提供文件,如果找不到,它将移动到该@missing部分。所以还要将以下内容添加到您的配置中(在location块外),这将重定向到您的索引页面

location @missing {
    rewrite ^ $scheme://$host/index.php permanent;
}

2 在您永远看不到文件扩展名 (.php) 的网址上

要删除 php 扩展,请阅读以下内容: http ://www.nullis.net/weblog/2011/05/nginx-rewrite-remove-file-extension/

以及链接中的示例配置:

location / {
    set $page_to_view "/index.php";
    try_files $uri $uri/ @rewrites;
    root   /var/www/site;
    index  index.php index.html index.htm;
}

location ~ \.php$ {
    include /etc/nginx/fastcgi_params;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /var/www/site$page_to_view;
}

# rewrites
location @rewrites {
    if ($uri ~* ^/([a-z]+)$) {
        set $page_to_view "/$1.php";
        rewrite ^/([a-z]+)$ /$1.php last;
    }
}
于 2012-10-17T09:25:06.360 回答
18

无需重写的平面和简单配置,在某些情况下可以工作:

location / {
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME /home/webuser/site/index.php;
}
于 2013-06-06T11:41:30.870 回答
9

使用 nginx $is_args 而不是 ? 对于 GET 查询字符串

location / { try_files $uri $uri/ /index.php$is_args$args; }
于 2016-11-23T18:11:01.087 回答
3

这是您的第二个问题的答案:

   location / {
        rewrite ^/(.*)$ /$1.php last;
}

这对我有用(根据我的经验),意味着你所有的 blabla.php 都将重写为 blabla

http://yourwebsite.com/index.phphttp://yourwebsite.com/index

于 2016-04-20T14:16:57.527 回答
1

以下是我解决这个问题的第 1 部分的方法:

    location / {
            rewrite ^([^.]*[^/])$ $1/ permanent;
            try_files $uri $uri/ /index.php =404;
            include fastcgi_params;
            fastcgi_pass php5-fpm-sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_intercept_errors on;
    }

重写 ^([^.]*[^/])$ $1/ 永久;将非文件地址(没有文件扩展名的地址)重写为末尾有一个“/”。我这样做是因为我遇到了“拒绝访问”。当我尝试在没有它的情况下访问文件夹时出现消息。

try_files $uri $uri/ /index.php =404; 是从 SanjuD 的答案中借用的,但如果仍未找到该位置,则需要额外的 404 重新路由。

fastcgi_index index.php;是我遗漏的最后一块拼图。如果没有此行,该文件夹不会重新路由到 index.php。

于 2013-11-12T21:12:56.087 回答
0

如果您只想将 index.php(没有其他 php 文件将传递给 fastcgi)传递给 fastcgi,以防您在像 codeigniter 这样的框架中有这样的路由

$route["/download.php"] = "controller/method";


location ~ index\.php$ {
        fastcgi_pass 127.0.0.1:9000;
        include fastcgi.conf;
}
于 2015-02-12T19:18:00.223 回答