如何通过2地址访问网站

时间:2017-07-17 10:09:34

标签: .htaccess

我现在有一个地址为Include File的网站。如何通过地址${ProjDirPath}/${ConfigName}/config.h访问此网站?在htaccess写什么?

1 个答案:

答案 0 :(得分:1)

  

在htaccess中写什么?

没什么特别的。

问题不在于写什么,而在<{1}}中写什么。答案是:不要写任何将网站链接到其名称之一的任何内容(.htaccessexample.com)。这同样适用于PHP源代码或配置文件。

其余的只是正确的名称注册,名称服务器和Apache配置。

关于Apache的配置,请假设您的Web服务器的IP地址为example.com.html。 Apache配置文件(1.2.3.4 f.e.)现在包含类似于此的内容:

httpd.conf

为了让Apache知道域<VirtualHost 1.2.3.4:80> ServerName example.com DocumentRoot "/www/docs/example.com" # Other configuration directives for domain example.com </VirtualHost> example.com.html相同,您可以向ServerAlias块添加<VirtualHost>

example.com

假设您已经拥有名称并且名称服务器已正确配置为指向现有服务器,请重新启动Apache,它应该可以正常工作。

详细了解<VirtualHost>ServerAlias