Apenas apagou $ host e manteve / e está tudo bem.
Eu tenho esse htaccess:
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?%{QUERY_STRING} [L]
</IfModule>
para converter em regras nginx.
O problema é a última linha.
Aqui está o meu atual:
set $condition "";
if (!-f $request_filename) {
set $condition F;
}
if (!-d $request_filename) {
set $condition "${condition}D";
}
if ($condition = FD) {
rewrite ^(.*) $host/index.php?$query_string last;
}
Como posso fazer isso funcionar?
Obrigado.
Apenas apagou $ host e manteve / e está tudo bem.
tente isto:
location / {
try_files $uri $uri/ /index.php?$args;
}