是否可以使用.htaccess包含一个基于我定义的变量的条件语句,可能是在httpd.conf中的站点特定设置中?
我想要做的是在我的开发服务器上将变量设置为true
。然后,我想要一个条件语句:if development = true, redirect to https
这可能吗?这是正确的做事方式吗?
答案 0 :(得分:1)
Apache httpd.conf
中的安装变量使用:
SetEnvIf Host ^ development=true
然后在执行.htaccess
的{{1}}中使用此规则:
if development = true, redirect to https