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. var/www /html/ 디렉토리를 수정하고 구성 파일을 수정하세요:
Vim/etc/httpd/conf/httpd.conf
Vim/etc/httpd/conf/httpd.conf
修改:DocumentRoot "/var/www/html/"为DocumentRoot "/var/www/html/exam"
【修改完配置文件后必须要重启服务:systemctl restart httpd
DocumentRoot "/var/www/html /"는 DocumentRoot "/var/www/html/exam"
[구성 파일을 수정한 후 서비스를 다시 시작해야 합니다: systemctl restart httpd
]
다음을 입력하세요. 직접 액세스할 수 있는 주소 관련 참조:
centOS tutorial위 내용은 Centos에 정적 웹사이트를 게시하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!