Ubuntu自帶的apache開啟ssi支持shtml
默認情況下:模塊是一件存在的,但是apache沒有加載模塊,所以需要自己創建一個軟連接
步驟:
ln -s /etc/apache2/mods-available/include.load /etc/apache2/mods-enabled
現在apache就可以加載模塊了
然后在需要開始ssi的sites-available/filename 的配置文件中增加相應的代碼。
例如我的配置:
vi /etc/apache2/sites-available/blogguy_cn
增加以下兩行:
AddType text/html .shtml .html .htm
AddOutputFilter INCLUDES .shtml .html .htm
同時注意:
Options Indexes FollowSymLinks MultiViews +Includes 一行 +Includes一定要有,默認是有的。
配置完的配置文件大致是:
<VirtualHost *:80>
ServerAdmin wayswang@gmail.com
DocumentRoot /var/www/blogguy.cn
ServerName blogguy.cn
ServerAlias www.blogguy.cn
<Directory /var/www/blogguy.cn>
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride None
Order allow,deny
allow from all
AddType text/html .shtml .html .htm
AddOutputFilter INCLUDES .shtml .html .htm
</Directory>
ErrorLog /var/log/apache2/blogguy_cn_error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/blogguy_cn_access.log combined
</VirtualHost>
然后重啟apache
service apache2 restart
可以了!
關鍵字:Ubuntu apache 開啟 ssi 支持 shtml
新文章:
- CentOS7下圖形配置網絡的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統后丟失windows啟動項
- CentOS單網卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網打印機IP講解
- CentOS7使用hostapd實現無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網絡重啟出錯
- 解決Centos7雙系統后丟失windows啟動項
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統有什么不同呢
- Centos 6.6默認iptable規則詳解