今天我有以下网址结构: http://example.org/news?nid=458854-Lukaku-to-italy.html
在.htaccess中,我现在想将所有/ news?nid =重写为: http://example.org/news/458854-Lukaku-to-italy.html
我已经尝试过了,但是没有用。服务器错误
> RewriteCond %{QUERY_STRING} nid=(.*?)($|&) [NC] RewriteRule ^/?news > /news/$1 [L,R=301]