i have to change my htaccess to nginx, but not working. help me change this code in the correct nginx format.
RewriteRule ^(.+).html$ yt-search.php?q=$1
RewriteRule ^query$ search-query.php [L,QSA]
RewriteRule ^download-mp3/(.+)~(.+)$ yt-single.php?title=$1&id=$2 [L,QSA]
RewriteRule ^loading-mp3/(.+)$ redirect-download.php?id=$1 [L,QSA]
RewriteRule ^create-post$ create-post.php [L,QSA]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]