2016年11月19日 星期六

Linux appache2 不要讓其他人瀏覽網站目錄

/etc/apache2/apache2.conf

Options Indexes FollowSymLinks
AllowOverride None
Require all granted

TO

Options FollowSymLinks
AllowOverride None
Require all granted

sudo service apache2 restart

沒有留言:

張貼留言

[CentOS] httpd port 9000 to 80

<VirtualHost *:80>     ServerName domain.name     ProxyRequests Off     ProxyVia Block     ProxyPreserveHost On     <Proxy *...