- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
1.重启apche(service httpd restart)的时候提示:
正在启动 httpd:httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
解决方法:vi /etc/httpd/conf/httpd.conf,找到#ServerName www.landui.com:80,修改为:ServerName localhost:80即可。
补充说明:平时在安装二进制文件的时候会提示说填写一个域名和端口,就是配置的这里。
2.thinkphp采用URL_MODEL=2,即采用rewrite的时候,发现http://www.landui.com/list?cid=3打不开网页。提示404.
解决方法:打开手册查看的了下URL重写部分,发现是apache配置问题。打开vi /etc/httpd/conf/httpd.conf,修改:AllowOverride None 将None改为 All。
3.在apache配置文件httpd.conf中想配置多个域名指向一个目录(即一个网站)的时候,重启apache出现错误:
ServerName takes one argument, The hostname and port of the server
解决方法:将修改为ServerAlias,或者是再添加一个 ServerAlias。
方法1
NameVirtualHost *:80
<VirtualHost *:80>
ServerAlias www.landui.com landui.com
DocumentRoot "/var/www/landui.com"
</VirtualHost>
方法2
NameVirtualHost *:80
<VirtualHost *:80>
ServerName landui.com
ServerAlias www.landui.com
DocumentRoot "/var/www/landui.com"
</VirtualHost>
售前咨询
售后咨询
备案咨询
二维码
TOP