0

我的 nginx 版本是:

root@v-enterprise15:/etc/nginx/conf.d# nginx -v
nginx: nginx version: nginx/1.0.5

我的应用程序安装在

/usr/share/nginx/www/magento/current

当我访问

http://{my_server}:81/magento/current/index.php

它工作正常。这是因为服务器根设置为/usr/share/nginx/www;

现在我想使用http://{myserver}:81/index.php. 当我将服务器根目录更改为/usr/share/nginx/www/magento/current并键入上述 URL 时,它会使用 http 302 重定向到

http://{my_server}:81/magento/current

这可能是什么原因?

然后它会应用我的 .conf 中的其他规则并给出 404。

我在访问日志中看到了这一点:

[31/Jul/2012:11:19:23 +0530] "GET /index.php HTTP/1.1" 302 5 "-" "Opera/9.80 (Windows NT 6.1; U; en) Presto/2.10.229 Version/11.64"

我的 .conf 文件是:

server {
    listen 81 default;
## SSL directives might go here
    server_name {my_server};
    #root /usr/share/nginx/www;
    root /usr/share/nginx/www/magento/current;
    error_log /var/log/nginx.error.log notice;
    access_log /var/log/nginx.access.log ;

    rewrite_log on;


    location / {
        auth_basic           "Restricted"; ## Message shown in login window
        auth_basic_user_file htpasswd; ## See /etc/nginx/htpassword
        index index.html index.php; ## Allow a static html file to be shown first
        try_files $uri $uri/ @magehandler; ## If missing pass the URI to Magento's front handler
        #try_files $uri $uri/ ; ## If missing pass the URI to Magento's front handler
        #expires 30d; ## Assume all files are cachable
    }


    location ^~  /. { ## Disable .htaccess and other hidden files
        return 404;
    }

    location @magehandler { ## Magento uses a common front handler
        #rewrite / /index.php;
        rewrite ^(.*) index.php$1 last;
    }

    #The more-specific regex are at the top.
    #The regex's are evaluated in the order in which they appear.
    location ~ .php$ { ## Execute PHP scripts
        #if (!-e $request_filename) { rewrite / /index.php last; } ## Catch 404s that try_files miss
            proxy_read_timeout 120;
            proxy_connect_timeout 120;
        expires        off; ## Do not cache dynamic content
        fastcgi_pass   127.0.0.1:9000;
        #fastcgi_param  HTTPS $fastcgi_https;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  MAGE_RUN_CODE default; ## Store code is defined in administration > Configuration > Manage Stores
        fastcgi_param  MAGE_RUN_TYPE store;
        include        fastcgi_params; ## See /etc/nginx/fastcgi_params
    }
    location ~ /(media|skin|js)/ { }
    location ~ /(tag|admin|customer|wishlist|checkout|catalog|app).*$ { #store URL
            rewrite /(.*)$ /index.php/$1 last;
    }

    location ~ /[a-zA-Z]+$ { #store URL
            rewrite ^/([a-zA-Z]+) ?store=$1 last;
    }
    location ~ /[a-zA-Z]+/ { #store URL
            rewrite ^/([a-zA-Z]+)(.*) /$2?store=$1 last;
    }
4

1 回答 1

1

由于您的 nginx 配置中没有任何重定向,因此重定向很可能是由您的应用程序引起的。

于 2012-07-31T09:25:38.710 回答