编程语言
首页 > 编程语言> > php-子网域的网址重写

php-子网域的网址重写

作者:互联网

情况很简单.我在cpanel中创建了一个通配符子域,其内容类似于:* .mysite.com.

我可以加载页面,但是我想将通配符的值用作GET的参数,以便页面可以实际基于该GET值显示相关内容.

因此,我想知道的是是否有可能拥有允许我执行以下操作的重写规则.

从网址:http://andystore.mysite.com中获取:$_ GET [‘store’] ==’andystore’

解决方法:

您可以在DOCUMENT_ROOT / .htaccess文件中使用以下代码:

RewriteEngine On
RewriteBase /

# capture first part of host name
RewriteCond %{HTTP_HOST} ^([^.]+)\.mysite\.com$[NC]
# make sure store= query parameter isn't there
RewriteCond %{QUERY_STRING} !(^|&)store= [NC]
# rewrite to current URI?store=backererence #1 from host name
RewriteRule ^ %{REQUEST_URI}?store=%1 [L,QSA]

参考:Apache mod_rewrite Introduction

Apache mod_rewrite Technical Details

标签:url,mod-rewrite,php,htaccess,url-rewriting
来源: https://codeday.me/bug/20191121/2050314.html