반응형

 

출처:  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:

반응형

+ Recent posts