安裝 apache2
apt-get install apache2
apache的設定,設定使用者網頁路徑
vi /etc/apache2/mods-available/userdir.conf
代碼:
<IfModule mod_userdir.c>
UserDir public_html
UserDir disabled root
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
</Directory>
</IfModule>
可以將上述兩個 public_html 修改成 www 較為簡短
將 Indexes 刪除,避免目錄中沒有 index.htm (首頁) 而被瀏覽者看到目錄中所有的檔案或資料夾
service apache2 restart #重新啟動 apache
a2enmod userdir #預設個人網頁存放 public_html ,若出現 404 錯誤訊息,必須執行這個指令。啟用個人網頁模組
vi /etc/apache2/apache2.conf #修改 apache2.conf ,增加以下一行指令
ServerName localhost
重新啟動 apache,就不會有上述的訊息。
http://wiki.ubuntu.org.cn/index.php?title=UbuntuHelp:ApacheMySQLPHP/zh&variant=zh-tw
-----------------------------------------------------------------------------------------------
虛擬目錄 ScriptAlias
設定哪一個目錄包括 server 端的 script 檔案,通常為 CGI script。Apache的 /cgi-bin/ 目錄裡面,例如: openwebmail 預設的網址很長,如果想將 http://xxx.xxxx.xxxx.xxxx/cgi-bin/openwebmail/openwebmail.pl 變更成 http://xxx.xxx.xxxxx.xxxx/mail ,方法如下:
vi /etc/apache2/sites-available/default #編輯此檔
代碼:
ScriptAlias /mail "/usr/lib/cgi-bin/openwebmail/openwebmail.pl"
service apache2 restart #重新啟動 apache
-----------------------------------------------------------------------------------------------
避免 /var/www/html 的目錄中沒有 index.htm (首頁) 而被瀏覽者看到目錄中所有的檔案或資料夾
vi /etc/apache2/apache2.conf #修改 apache2.conf
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews #將 Indexes 刪除
AllowOverride None
Order allow,deny
allow from all
</Directory>
service apache2 restart #重新啟動 apache
-----------------------------------------------------------------------------------------------
自訂網頁錯誤訊息 403 及 404
vi /etc/apache2/apache2.conf #編輯此檔,新增以下兩行
ErrorDocument 403 /errmsg/403.htm
ErrorDocument 404 /errmsg/404.htm
/etc/init.d/apache2 restart #儲存後,重新啟動 apache
mkdir /var/www/errmsg #建立errmsg目錄
cd /var/www/errmsg/ #進入errmsg目錄,下載以下 403 及 404 自訂錯誤的網頁內容
wget http://www.tdes.chc.edu.tw/works/linux/mandriva2006/403.htm
wget http://www.tdes.chc.edu.tw/works/linux/mandriva2006/404.htm
參考資料:
http://myip.tw/itsmw/index.php?title=APM
apt-get install apache2
apache的設定,設定使用者網頁路徑
vi /etc/apache2/mods-available/userdir.conf
代碼:
<IfModule mod_userdir.c>
UserDir public_html
UserDir disabled root
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
</Directory>
</IfModule>
可以將上述兩個 public_html 修改成 www 較為簡短
將 Indexes 刪除,避免目錄中沒有 index.htm (首頁) 而被瀏覽者看到目錄中所有的檔案或資料夾
service apache2 restart #重新啟動 apache
a2enmod userdir #預設個人網頁存放 public_html ,若出現 404 錯誤訊息,必須執行這個指令。啟用個人網頁模組
- 代碼:
apache2: apr_sockaddr_info_get() failed for mail
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
vi /etc/apache2/apache2.conf #修改 apache2.conf ,增加以下一行指令
ServerName localhost
重新啟動 apache,就不會有上述的訊息。
http://wiki.ubuntu.org.cn/index.php?title=UbuntuHelp:ApacheMySQLPHP/zh&variant=zh-tw
-----------------------------------------------------------------------------------------------
虛擬目錄 ScriptAlias
設定哪一個目錄包括 server 端的 script 檔案,通常為 CGI script。Apache的 /cgi-bin/ 目錄裡面,例如: openwebmail 預設的網址很長,如果想將 http://xxx.xxxx.xxxx.xxxx/cgi-bin/openwebmail/openwebmail.pl 變更成 http://xxx.xxx.xxxxx.xxxx/mail ,方法如下:
vi /etc/apache2/sites-available/default #編輯此檔
代碼:
ScriptAlias /mail "/usr/lib/cgi-bin/openwebmail/openwebmail.pl"
service apache2 restart #重新啟動 apache
-----------------------------------------------------------------------------------------------
避免 /var/www/html 的目錄中沒有 index.htm (首頁) 而被瀏覽者看到目錄中所有的檔案或資料夾
vi /etc/apache2/apache2.conf #修改 apache2.conf
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews #將 Indexes 刪除
AllowOverride None
Order allow,deny
allow from all
</Directory>
service apache2 restart #重新啟動 apache
-----------------------------------------------------------------------------------------------
自訂網頁錯誤訊息 403 及 404
vi /etc/apache2/apache2.conf #編輯此檔,新增以下兩行
ErrorDocument 403 /errmsg/403.htm
ErrorDocument 404 /errmsg/404.htm
/etc/init.d/apache2 restart #儲存後,重新啟動 apache
mkdir /var/www/errmsg #建立errmsg目錄
cd /var/www/errmsg/ #進入errmsg目錄,下載以下 403 及 404 自訂錯誤的網頁內容
wget http://www.tdes.chc.edu.tw/works/linux/mandriva2006/403.htm
wget http://www.tdes.chc.edu.tw/works/linux/mandriva2006/404.htm
參考資料:
http://myip.tw/itsmw/index.php?title=APM
Admin 在 周六 7月 25, 2015 6:09 am 作了第 1 次修改