Nginx和Apache的rewrite写法对比

在apache httpd.conf中的写法:

RewriteEngine On
RewriteRule /index_([^/]*).html /templete1/index\.php\?itemID=$1 [L]
RewriteRule /doc_([^/]*).html /goDoc\.php\?docID=$1 [L]

在nginx.conf中的写法:

rewrite "/index_([^/]*).html" /templete1/index.php?itemID=$1 last;
rewrite "/doc_([^/]*).html" /goDoc.php?docID=$1 last;
rewrite "/aboutMe" /aboutMe.php last;
rewrite "userReg" /userReg.php last;

本文标签: nginx Apache rewrite
转载声明:本文为红旗飘飘的原创文章,转载请注明原文地址,谢谢合作

发表评论: