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

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -