我正在尝试托管2个网站,使用2个注册且确实有效的合法域名,我的问题是,当我尝试加载第二个域时,它会重定向到第一个域而不是加载第二个域。 (例如,我有google1.com和google2.com,当我访问google2.com时,它会重定向到google2.com)
这是第二个网站的配置(此处不使用真实域名)
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName domain.xyz
ServerAlias www.domain.xyz
DocumentRoot /var/www/thewest
</VirtualHost>
启用网站是正确的(使用a2ensite)
lrwxrwxrwx 1 root root 31 May 12 11:10 default.conf -> ../sites-available/default.conf
lrwxrwxrwx 1 root root 31 May 12 12:01 thewest.conf -> ../sites-available/thewest.conf
我在apache2.conf上配置了目录
<Directory /var/www/thewest>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
但这仍然会发生。为什么呢? 编辑:这是在使用Raspbian的Raspberry Pi上运行,我还应该指出我使用的是DDNS服务。
答案 0 :(得分:0)
打开Apache配置文件,确保在虚拟主机部分之前添加以下行:
<DataGridTemplateColumn>
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<Button x:Name="deployBtn" Click="deployBtn_Click" Height="25" Width="45" Background="#FF43B46C" Margin="0 -3 0 0">
<Button.ToolTip>
<ToolTip>
<StackPanel>
<TextBlock FontWeight="Bold">Deploy</TextBlock>
</StackPanel>
</ToolTip>
</Button.ToolTip>
<Grid>
<materialDesign:PackIcon Kind="PackageUp" HorizontalAlignment="Left" VerticalAlignment="Center" Width="35" Margin="-12 0 0 0"/>
</Grid>
</Button>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
不要忘记重启Apache以使更改生效。