2

我当前的设置是运行 Ubuntu 12.04 LTS、Nginx 1.4.1 和 Magento 1.7.0.2。

今天早些时候,我建立了一个基本的 Magento 商店。我没有安装任何模块,也没有进行任何配置更改。在深入研究系统之前,我只是想打好基础。我希望删除出现在域名和文件路径之间的“index.php”。

我的虚拟主机取自 nginx 网站:

server {
  root     /path/to/root/domain/html;
  index    index.php;
  error_log /path/to/error/log/error.log;
  access_log /path/to/transfer/log/transfer.log;
  server_name   servername.com;
  location / {
    index index.html index.php;
    try_files $uri $uri/ @handler;
    expires 30d;
  }

  location ^~ /(app|includes|lib|media/downloadable|pkginfo|report/config.xml|var)/ {     internal; }
  location /var/export/ { internal; }
  location /. { return 404; }
  location @handler { rewrite / /index.php; }
  location ~* .php/ { rewrite ^(.*.php)/ $1 last; }
  location ~* .php$ {
    if (!-e $request_filename) { rewrite / /index.php last; }
    expires off;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param MAGE_RUN_CODE default;
    fastcgi_param MAGE_RUN_TYPE store;
    include fastcgi_params;
  }
}

我看到其他人一直在寻找这个问题的答案,有解决方案的代码片段,但这些似乎都不适用于我的系统。当我对我的 Nginx 虚拟主机进行更改时,我总是重新启动 nginx,但 index.php 仍然显示在 URL 中。

4

2 回答 2

0

将此添加到 magento nginx vhost。

 location / {
            if (!-e $request_filename) {
                    rewrite ^/([^?]*)(?:\?(.*))? /index.php?title=$1&$2 last;
            }
            if ($uri ~* "\.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$") {
                    expires max;
                    break;
            }
    }
于 2014-08-05T07:00:41.623 回答
0

Nginx 配置看起来不错。在system > configuration > general > web您的管理面板中设置Use Web Server Rewritesyes清除 magento 中的缓存。

于 2013-05-23T23:45:32.563 回答