Question
Setting FURL with nginx 1.10 for ips 4
I am trying to settup furl for invision power suite 4 on nginx 1.10 and I have tried this:
location / {
try_files $uri $uri/ /index.php;
}
location ~^(/page/).*(.php)$ {
try_files $uri $uri/ /index.php;
}
and this:
location / {
try_files $uri $uri/ @ips;
}
But in both case nginx won’t restart.
I google and tried a few others but still not working, what am I forgetting?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×