通配符子域重定向系统

时间:2019-01-14 16:36:23

标签: php redirect wildcard-subdomain

我实际上正在尝试制作一个基于php,mysql的wapsite生成器

在本地主机中,我已经存储了此类文件夹和文件。

[Dir]data
     [Dir]abc+localhost
          [file]index.html
          [file]site-0.html
          [file]site-2.html
          [file]anything.html  

注意:“ anything.html”可以是anyname.html

我想在这里使用短网址访问这些文件。

http://abc.localhost/index.html
http://abc.localhost/site-0.html
http://abc.localhost/site-2.html
http://abc.localhost/anyname.html

而不是通过;

进行访问
> http://abc.localhost/data/abc+localhost/index.html
> http://abc.localhost/data/abc+localhost/site-0.html
> http://abc.localhost/data/abc+localhost/site-2.html
> http://abc.localhost/data/abc+localhost/anything.html

希望它能解释一切。怎么做?

0 个答案:

没有答案