modx友好url nginx FPM php5.3-友好url';它不工作了

modx友好url nginx FPM php5.3-友好url';它不工作了,url,nginx,fastcgi,modx,Url,Nginx,Fastcgi,Modx,Im在nginx 0.8.53上使用php5.3,在Modx revolution上使用FPM 我试图让“友好url”的工作,但我得到的是404的。 在modx配置中,友好url设置为yes,友好别名设置为no(因此它会删除后缀) 我的配置文件: server { listen 80; server_name .mydomain.net; # index index.php; root /home/mylogin/htdocs; location

Im在nginx 0.8.53上使用php5.3,在Modx revolution上使用FPM

我试图让“友好url”的工作,但我得到的是404的。 在modx配置中,友好url设置为yes,友好别名设置为no(因此它会删除后缀)

我的配置文件:

server {
    listen 80;
    server_name .mydomain.net;

    # index index.php;
    root   /home/mylogin/htdocs;

    location /  {
             index  index.php index.html;
             if (!-e $request_filename)
             {
               rewrite ^/(.*)$ /index.php?q=$1 last;
             }
    }
    # serve static files directly
    location ~* ^.+\.(jpg|jpeg|gif|css|png|js|ico)$ {
        root /home/mylogin/htdocs;
        access_log        off;
        expires           30d;
        break;
    }
}
快速CGI modx文件:

fastcgi_connect_timeout 60;
fastcgi_send_timeout 300;
fastcgi_buffers 4 32k;
fastcgi_busy_buffers_size 32k;
fastcgi_temp_file_write_size 32k;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_ignore_client_abort on;
fastcgi_intercept_errors on;
fastcgi_read_timeout 300;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
fastcgi_param REDIRECT_STATUS 200;

不太可能是完整的解决方案,但您的设置是错误的-“友好别名”是关于是否将资源中的“别名”用作卷的端点的设置。如果要删除后缀,请转到系统设置>内容类型并将HTML设置为空。

请使用此默认配置

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

root /usr/share/nginx/html;
index index.php index.html index.htm;

# Make site accessible from http://localhost/
server_name localhost;

location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    # try_files $uri $uri/ =404; //Comment this and add below line
      try_files $uri $uri/ /index.php?$args;
    # Uncomment to enable naxsi on this location
    # include /etc/nginx/naxsi.rules
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
    root /usr/share/nginx/html;
}
location ~ \.php$ {
    try_files $uri =404;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}

}

是的,“友好别名”被打开了,所以情况就是这样,但我最终自己找到了:o)无论如何,谢谢。