We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2acb080 commit 9648c9aCopy full SHA for 9648c9a
etc/nginx/framework/default.conf
@@ -1,6 +1,14 @@
1
# Default framework configuration
2
# Handles standard PHP applications
3
4
+# Standard configuration - direct file access
5
location / {
- try_files $uri $uri/ /index.php$is_args$args;
6
+ try_files $uri $uri/ =404;
7
}
8
+
9
+# Router-based configuration - uncomment to enable
10
+# With this configuration, all requests will be directed to index.php
11
+# if the requested file doesn't exist
12
+# location / {
13
+# try_files $uri $uri/ /index.php$is_args$args;
14
+# }
0 commit comments