Comments on: Install YetiForce CRM on Ubuntu 16.04 https://www.rosehosting.com/blog/install-yetiforce-crm-on-ubuntu-16-04/ Premium Linux Tutorials Since 2001 Mon, 12 Dec 2022 11:41:58 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: Chris https://www.rosehosting.com/blog/install-yetiforce-crm-on-ubuntu-16-04/#comment-45200 Thu, 22 Dec 2016 07:25:54 +0000 https://www.rosehosting.com/blog/?p=19197#comment-45200 I had to replace:

location / {
try_files $uri $uri/ /index.php$is_args$args;
}

With:

location / {
index index.php index.html index.htm;
try_files $uri $uri/ =404;
}

Otherwise index.php wouldn’t load without being typed at the end of the url.

]]>