鍍金池/ 問答/Linux/ nginx rewrite問題

nginx rewrite問題

請(qǐng)問如何實(shí)現(xiàn)rewrite
源地址http://a.cn/index.html?id=100 Rewrite后: http://a.cn/article/100.html

回答
編輯回答
女流氓
server {
    listen 80; 
    server_name a.cn;
    
    if ($query_string ~* "id=(\d+)") {
       set $id $1; 
       rewrite ^(.*)$ /article/$id.html? permanent;  
    }   
}
2018年9月2日 02:03