Hi,
it does not work well with Nginx. Here is the working configuration, or else it does NOT see url and ALWAYS return 404.
location / {
try_files $uri $uri/ /index.php?$uri;
}
The issue however is that any GET request parameters are invisible to PHP.
Using standard configuration will cause a redirection loop.
location / {
try_files $uri $uri/ /index.php?$query_string;
}
Hi,
it does not work well with Nginx. Here is the working configuration, or else it does NOT see url and ALWAYS return 404.
The issue however is that any GET request parameters are invisible to PHP.
Using standard configuration will cause a redirection loop.