centos如何發佈靜態網站?
1、安裝Apache服務
# yum install -y httpd #systemctl start httpd.service /etc/httpd/conf:该目录存放Apache服务器的配置文件 /var/www/html:该目录是Apache服务器的默认站点根目录 /etc/httpd/logs:Apache服务器的日志文件目录
2、測試Apache是否安裝成功
# 在瀏覽器中的網址列輸入:localhost進行測試
3、將網站程式碼exam複製到/var/www/html/目錄下,並修改設定檔:
Vim/etc/httpd/conf/httpd.conf
修改:DocumentRoot "/var/www/html/"為DocumentRoot "/var/www/html/exam"
【修改完設定檔後必須要重新啟動服務:systemctl restart httpd
】
輸入位址就可以直接存取了
相關參考:centOS教學
以上是centos如何發布靜態網站的詳細內容。更多資訊請關注PHP中文網其他相關文章!