apache - htaccess to nginx conversion -
i'm migrating apache nginx. original htaccess rules follow:
<ifmodule mod_rewrite.c> options +followsymlinks rewriteengine on rewritecond %{request_filename} !-d rewritecond %{request_filename} !-f rewriterule ^(.*)$ index.php?/$1 [qsa,pt,l] </ifmodule>
could tell me how can convert these code nginx equivalent? thanks
found few online apache nginx tools:
Comments
Post a Comment