[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[monit] Help with .htaccess rules
From: |
Joe Shang |
Subject: |
[monit] Help with .htaccess rules |
Date: |
Mon, 17 Nov 2008 15:47:16 -0600 |
May seem like cheating posting this on here, but kinda stuck on this,
as we are helping move alot of shared customers to nginx.
Stuck on these:
RewriteRule ^(.*)-p-(.*).html$
index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-c-(.*).html$
index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-m-([0-9]+).html$
index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pi-([0-9]+).html$
index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pr-([0-9]+).html$
index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING}
[L]
RewriteRule ^(.*)-pri-([0-9]+).html$
index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING}
[L]
How would these look in nginx?
Is it like:
rewrite ^/(.*)-p-(.*).html$
index\.php?main_page=product_info&products_id=$2&% last;
rewrite ^/(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&% last;
rewrite ^/(.*)-m-([0-9]+).html$
index\.php?main_page=index&manufacturers_id=$2&% last;
rewrite ^/(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&% last;
rewrite ^/(.*)-pr-([0-9]+).html$
index\.php?main_page=product_reviews&products_id=$2&% last;
?
May seem stupid of me, but just not sure how would "{QUERY_STRING}"
would be placed here on nginx from .htaccess, nginx doesn't even
recognize it.
Thanks!
Joe
- [monit] Help with .htaccess rules,
Joe Shang <=