diff --git a/nginx.htaccess b/nginx.htaccess new file mode 100644 index 0000000..f9e0970 --- /dev/null +++ b/nginx.htaccess @@ -0,0 +1,5 @@ +location / { + if (!-e $request_filename){ + rewrite ^(.*)$ /index.php?s=$1 last; break; + } +}