标签: apache nginx
我想知道如何将这个apache htaccess转换为nginx。
Options +FollowSymLinks RewriteEngine on RewriteRule ^url/([^/]+)$ process.php?tk=$1 [L]
这是对的吗?
disable_symlinks off; rewrite ^url/([^/]+)$ process.php?tk=$1 [L]