apache2-启用和禁用站点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache2-启用和禁用站点相关的知识,希望对你有一定的参考价值。

enable and disable sites and modules in apache 2
  1. # enable site
  2. sudo a2ensite
  3.  
  4. # disable site
  5. sudo a2dissite
  6.  
  7. # enable an apache2 module
  8. sudo a2enmod
  9.  
  10. # e.g. a2enmod php4 will create the correct symlinks in mods-enabled to allow the module to be used. In this example it will link both php4.conf and php4.load for the user
  11.  
  12. # disable an apache2 module
  13. sudo a2dismod
  14.  
  15. # force reload the server:
  16. sudo /etc/init.d/apache2 force-reload

以上是关于apache2-启用和禁用站点的主要内容,如果未能解决你的问题,请参考以下文章