我现在有一个地址为Include File
的网站。如何通过地址${ProjDirPath}/${ConfigName}/config.h
访问此网站?在htaccess写什么?
答案 0 :(得分:1)
在htaccess中写什么?
没什么特别的。
问题不在于写什么,而在<{1}}中写什么不。答案是:不要写任何将网站链接到其名称之一的任何内容(.htaccess
或example.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,它应该可以正常工作。