Internal subdomain to folder redirect

后端 未结 1 1391
心在旅途
心在旅途 2020-12-01 15:41

I want to create folders on the fly, but make it seem like I am creating subdomains on the fly using mod_rewrite. e.g.

Create \"john\" folder using PHP



        
相关标签:
1条回答
  • 2020-12-01 15:55

    First you need to configure your server to accept any subdomain for your domain example.com and redirect it to your virtual host that as well has to accept any subdomain. After that, you can use the following rule to rewrite that subdomain internally to a folder with the same name:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^www\.
    RewriteCond %{HTTP_HOST} ^([^/.]+)\.example\.com$
    RewriteRule ^ %1%{REQUEST_URI} [L]
    
    0 讨论(0)
提交回复
热议问题