thinkphp怎么配置域名
时间:2019-09-03 14:14
thinkphp怎么配置域名? Thinkphp5.1 配置域名(站点)设置 1、首先找到D:\xampp\apache\conf\extra httpd-vhosts.conf这个文件 2、修改成: 3、再找到 hosts这个文件 4、最底部添加: 127.0.0.1 tp 相关推荐:《ThinkPHP教程》 phpstydy本地配置域名访问的方法 本文主要和大家分享phpstydy本地配置域名访问的方法,希望能帮助到大家。 一. hosts配置: 1.用编辑器打开hosts文件,位置:C:\Windows\System32\drivers\etc目录下 示例: 在hosts文件的最后添加如下代码: 二. apache配置: 1. 编辑httpd.conf文件,开启虚拟主机,位置:在apache的安装目录,即phpstudy安装目录下的phpStudy\Apache\conf,找到Includeconf/extra/httpd-vhosts.conf,去掉前面的# 2. 进入开启的虚拟主机文件httpd-vhosts.conf进行域名配置,位置:\phpStudy\Apache\conf\extra目录下 配置规则:<VirtualHost *:80> ServerName 配置的域名 若想在Apache的配置中隐藏入口文件index.php,即使访问地址:localhost/h5.test.cn/index.php/test/index 简化成 localhost/h5.test.cn/test/index,也可以通过域名配置实现,即如下:<VirtualHost *:80> 以上配置都完成后,切记要重启服务器。 注意:这个时候出现一个问题,就是用localhost访问本地其他项目就出现访问不了,这么多项目,不想每个都去配置一个虚拟域名,既能域名访问,又能localhost就好了,在网上找到了解决办法: 用上面的方法添加一个名为localhost的域名绑定到www目录,然后在httpd.conf文件中注释掉ServerName localhost这一行,重启apache,就都可以访问了。 以上就是thinkphp怎么配置域名的详细内容,更多请关注gxlsystem.com其它相关文章!<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "D:/xampp/htdocs/tp/public"
ServerName tp
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
C:\Windows\System32\drivers\etc
127.0.0.1 www.tp5.com
ServerAdminwebmaster@dummy-host.example.com
DocumentRoot"D:/phpStudy/WWW/要配置域名的项目名"
ErrorLog"logs/dummy-host2.example.com-error.log"
CustomLog"logs/dummy-host2.example.com-access.log" common
</VirtualHost>
DocumentRoot"D:/phpStudy/WWW/h5.test.cn"
ServerNamelocal.h5.test.cn
<IfModuledir_module>
DirectoryIndexindex.php
</IfModule>
</VirtualHost>