蚂蚁分类信息5.9SE多城市版NGINX伪静态规则
rewrite ^/([^\/]+)/([0-9]+)\.html$ /view.php?id=$2;
rewrite ^/space/(.+)/$ /space.php?user=$1;
rewrite ^/company/([0-9]+)/$ /company.php?uid=$1;
rewrite ^/company/([0-9]+)/([^\\/]+).html$ /company.php?uid=$1&Uid=$2;
rewrite ^/news.html$ /news.php;
rewrite ^/news-id-([0-9]+).html$ /news.php?id=$1;
rewrite ^/news-catid-([0-9]+).html$ /news.php?catid=$1;
rewrite ^/news-catid-([0-9]+)-page-([0-9]+).html$ /news.php?catid=$2&page=$2;
rewrite ^/([a-z,A-Z,0-9,\/,\~,\_,\-]+)/$ /category.php?Catid=$1;
if ( $host ~* (.*)\.(.*)\.(.*) ) {
set $domain $1; #获取当前的 域名前缀
}
if ( $domain !~* ^www$ ) {
rewrite ^/$ /city/$domain/index.php last;
rewrite ^/([a-z,A-Z,0-9,\/,\~,\_,\-]+)/$ /city/$domain/category.php?Catid=$1 last;
}
上一篇:Tipask问答系统nginx系统的伪静态规则怎么写?
下一篇:蚂蚁分类信息系统5.9单城市版apache环境伪静态规则