8.0.3 > Clean urls under nginx
Permalink
I have installed Version 8.0.3 on nginx and have tryed to activate clean urls. My complete nginx directive looks like that:
With that configuration i can use "clean urls" for all pages in my installation with the exception of dashboard panels. The call of dashboard panels ends always in an 500er error in jquery.js.
Has anyone an idea for a solution for this behavior? Thanks in advance!
location / { set $do_rewrite 1; if (-f $request_filename) { set $do_rewrite 0; } if (-f $request_filename/index.html) { set $do_rewrite 0; } if (-f $request_filename/index.php) { set $do_rewrite 0; } if ($do_rewrite = "1") { rewrite ^/(.*)$ /index.php/$1 last; } }
Viewing 15 lines of 65 lines. View entire code block.
With that configuration i can use "clean urls" for all pages in my installation with the exception of dashboard panels. The call of dashboard panels ends always in an 500er error in jquery.js.
Has anyone an idea for a solution for this behavior? Thanks in advance!
into this