Can I do an if/then/else in htaccess?

后端 未结 5 809
名媛妹妹
名媛妹妹 2020-12-19 07:42

I have a site that serves up certain content based on the subdomain. So it is the same set of files, and maybe the header and some info in the site pages changes based on t

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-19 07:45

    Try something like this:

    SetEnvIf Host ^abc\. HOST_ABC
    SetEnvIf Host ^dev\. HOST_DEF
    
    
        AuthUserFile …
    
    
        AuthUserFile …
    
    

提交回复
热议问题