CyberAP
Well-known member
I have an issue with using XenForo on a server with Varnish installed. The problem is that removing the last slash causes a wrong redirect to http://domain.name:8080/request
For example if I type http://mysite.com/community I am redirected to http://mysite.com:8080/community/
I googled that issue and pasted this into my config:
server_name_in_redirect off;
port_in_redirect off;
rewrite ^([^.]*[^/])$ $1/ permanent;
That fixed the issue temporarily. I can acces /community with no slash (it's added automatically) and all other pages except /members. I don't know why but members page doesn't work without slash. Why does this happen and is it possible to fix? Thanks.
For example if I type http://mysite.com/community I am redirected to http://mysite.com:8080/community/
I googled that issue and pasted this into my config:
server_name_in_redirect off;
port_in_redirect off;
rewrite ^([^.]*[^/])$ $1/ permanent;
That fixed the issue temporarily. I can acces /community with no slash (it's added automatically) and all other pages except /members. I don't know why but members page doesn't work without slash. Why does this happen and is it possible to fix? Thanks.