Linux LIFE
아파치 웹서버 리스팅 스타일 수정 방법 (apache web server / index of / style / indexStyleSheet )
RioRex_맥앤리
2019. 9. 9. 14:19
반응형
출처: https://askubuntu.com/questions/544197/how-to-change-the-index-of-template
To change style
Use the IndexStyleSheet directive. For example:
IndexStyleSheet "/css/style.css"
The /etc/apache2/sites-enabled/your_site.conf file should looks like:
<VirtualHost *:80> ServerName something.com DocumentRoot /var/www/ IndexStyleSheet "/css/style.css" ...</VirtualHost>
And the /var/www/css/style.css stylesheet:
body { color: red; }
Result:
반응형