0
我有一个网站建立在Azure上,我想部署一个PHP网站。Azure网站PHP虚拟主机
在WAMP我有以下的虚拟主机配置:
<VirtualHost *:9898>
ServerAdmin [email protected]
ServerName test.somesite.com
DocumentRoot "C:\wamp\www\somesite-ui\www"
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory "C:\wamp\www\somesite-ui\www">
AllowOverride All
Order allow,deny
allow from all
</Directory>
# Rewrite configuration
Include "C:\wamp\www\somesite-ui\rewrite.conf"
</VirtualHost>
这是因为我们使用MVC厚味
如何配置在Azure网站上使用类似的配置?
事情是这样做的我失去了所有的GitHub部署的东西 – iwayneo
您好iwayneo,我真的不明白你将如何失去你的github部署。你能解释我更多吗? –
您可以在Azure中设置网站,然后选择从github分支进行部署。当我推送到该分支时,会触发一个钩子,天青会自动发布该网站。 – iwayneo