dsfsdfsdfsdf6455 2016-01-15 06:38
浏览 114
已采纳

删除前导斜杠NGINX

I have a double slash in my URL (which is not ideal).

So my app is hit at //signup.

Error message:

Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET //signin""

Anyway to change it to just /signup?

I have tried the below in the first location block (which is the one catching the proxy).

Maybe something along the lines of the...

location /apps/phpauthentication/1 {      
        rewrite  ^\//(.*)/$  /$1 break;  
        try_files $uri /app_dev.php$is_args$args;
        if (!-e $request_filename) {
            rewrite ^/(.*)$ /app_dev.php last;
        }
    }

Full config:

server {
    listen 80;
    server_name localhost;

    root /srv/http/web;
    index app_dev.php index.php index.html;  

    location /apps/phpauthentication/1 {
        rewrite ^\//(.*)/$ /$uri permanent;
        try_files $uri /app_dev.php$is_args$args;
        if (!-e $request_filename) {
            rewrite ^/(.*)$ /app_dev.php last;
        }
    }

    location ~ ^/(app_dev|config)\.php(/|$) {
        fastcgi_pass app:9000;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
        fastcgi_param APP_ENV dev;
        include        fastcgi_params;
    }

    location ~ \.php$ {
       fastcgi_pass   app:9000;
       fastcgi_index  index.php;
       fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
       fastcgi_param APP_ENV dev;
       include        fastcgi_params;
    }
}

Thanks :)

展开全部

  • 写回答

1条回答 默认 最新

  • 普通网友 2016-01-15 08:44
    关注

    I have had success with the URI changing on the backend while processing with the following.

         location /apps/phpauthentication/1 {
           rewrite ^(.*)//(.*)$ /$1/$2 permanent;  ##First matches double slash and rewrites
           try_files $uri /app_dev.php$is_args$args;  ##URI is now /apps/1/signup
           if (!-e $request_filename) {
               rewrite ^/(.*)$ /app_dev.php last; ## Matches all request that pass from above
           }
    

    Now the URL in the browser never changes but the backend server now appears to have a valid path.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部