简体   繁体   中英

URL_Rewriting with ISAPI_rewrite

I have a problem in ISAPI_rewrite 3.

a have a url like

www.example.com/web/index.html?ag=2154

What I want is, when the user writes this address it should be converted to agent's subdomain like

www.2154.example.com/web/index.html?ag=2154

Thanks in advance

Do you want the URL in the address bar to change or do you want it to be converted "behind the scenes"? Please try either

RewriteBase /
RewriteCond %{QUERY_STRING} ^ag=(\d+)$ [NC]
RewriteRule ^web/index\.html$ http://www.%1.example.com%{REQUEST_URI} [NC,L]

or

RewriteBase /
RewriteCond %{QUERY_STRING} ^ag=(\d+)$ [NC]
RewriteRule ^web/index\.html$ http://www.%1.example.com%{REQUEST_URI} [NC,P]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM