我在 Concrete5 上托管了一个实例,除了使用动态路径外,它们还使用www.mysite.com/index.php/path/to/page
.
www.mysite.com/
我大部分时间都在工作,但我在让Nginx向index.php
.
- www.mysite.com/ -> 列出
public
目录,但应该显示 index.php - www.mysite.com/index.php/path/to/page -> 有效!
- www.mysite.com/some/other/path -> 有效!
这是我的 Nginx 配置文件:
server {
root /srv/www/mysite.com/public_html;
server_name mysite.com
location / {
try_files $uri $uri/ /index.php/$request_uri;
autoindex on; # just for debugging...
}
location ~ \.php($|/) {
set $script $uri;
if ($uri ~ "^(.+\.php)(/.+)") {
set $script $1;
}
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$script;
fastcgi_intercept_errors on;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
}
您的配置丢失
index index.php;
。