Trailing Slash redirection poblem
Muhammad Yousuf Khan
sirtcp at gmail.com
Sun May 1 08:16:51 UTC 2016
>>The configuration you have shown says "if the request is for /live/,
>>ask the browser to instead request /live".
>>The configuration you have not shown says "if the request is for /live,
>>ask the browser to instead request /live/".
Thanks for the tip I think I got the problem but could not resolve it.
try_files $uri $uri.html $uri/ /index.php?q=$request_uri;
I even tried deleting “$uri.html $uri/” but still creating loop. I know
this is a important line to display wordpress pages . now the error turn
404 from redirection loop.
>>You should not have both of those in the same configuration file, or
>>you get a loop.
Yes I got this now as shared. Thanks for the tip again.
>>The not-shown configuration is usually a very good idea if "/live"
>>is to be served from the filesystem and corresponds to a directory.
>>So: why do you want to remove the trailing slash, in the shown
>>configuration?
Actually this is a requirement from my client.
>>If you want /live to redirect to /live/, then you should configure thing
>>such that /live/ does not redirect to /live.
No I want /live/ to be redirected to /live and the rule which is
redirecting /live to /live/ and ending up as loop Is also important. Any
helpful advice is highly appreciated.
On Sat, Apr 30, 2016 at 1:40 PM, Francis Daly <francis at daoine.org> wrote:
> On Sat, Apr 30, 2016 at 12:47:20PM +0500, Muhammad Yousuf Khan wrote:
>
> Hi there,
>
> > I have been trying to remove the trailing slash with this redirection
> rule.
> > rewrite ^/(.*)/$ /$1 permanent;
> >
> > however it is creating a loop.
> >
> > curl -I https://xxxx.com/live/
> >
> > HTTP/1.1 301 Moved Permanently
> > Location: https://xxxx.com/live
>
> > curl -I https://xxxx.com/live
> >
> > HTTP/1.1 301 Moved Permanently
> > Location: https://xxxx.com/live/
>
> > Can you please guide what i am doing wrong here.
>
> The configuration you have shown says "if the request is for /live/,
> ask the browser to instead request /live".
>
> The configuration you have not shown says "if the request is for /live,
> ask the browser to instead request /live/".
>
> You should not have both of those in the same configuration file, or
> you get a loop.
>
> The not-shown configuration is usually a very good idea if "/live"
> is to be served from the filesystem and corresponds to a directory.
>
> So: why do you want to remove the trailing slash, in the shown
> configuration?
>
> If you want /live to redirect to /live/, then you should configure thing
> such that /live/ does not redirect to /live.
>
> f
> --
> Francis Daly francis at daoine.org
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20160501/1a247a26/attachment.html>
More information about the nginx
mailing list