Hello everyone,
We are migrating from Apache to Nginx. The performance has improved a lot!
Almost everything is working fine.
There is only one thing that doesn't work.
The .htaccess from Apache looks like this:
----------------------------------------------------------
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?rt=$1 [L,QSA]
----------------------------------------------------------
I already have made some rewrite rules, but they are not working perfectly:
---------------------------------------------------------
location /subdir/ {
try_files $uri /subdir/index.php?rt=;
}
---------------------------------------------------------
The files are in the subdirectory "subdir".
It would be great if someone could help me. It's a small issue (I think), but you would help me a lot!
Thank you in advance!
Regards,
Dion