安装好php+mysql服务器一键安装包 找到这个 C:PC_webserverapacheconf httpd.conf 打开文件
下面加
NameVirtualHost *:80
<VirtualHost *:80>
ServerName daixiao360.cn
DocumentRoot c:/PC_webserver/wwwroot
</VirtualHost>
<VirtualHost *:80>
ServerName www.daixiao360.cn
DocumentRoot c:/PC_webserver/wwwroot
</VirtualHost>
然后也是在这个文件下搜索
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
改成
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
即可
搜索
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
改成
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
最后找到C:/WINDOW/Ssystem32/drive/rsetc/hosts
最下面加上
120.24.66.120 daixiao360.cn
120.24.66.120 www.daixiao360.cn
就可以允许帝国cms了
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)