發(fā)表日期:2019-12 文章編輯:小燈 瀏覽次數(shù):3949
什么是SSI?
SSI是英文Server Side Includes的縮寫,翻譯成中文就是服務(wù)器端包含的意思。從技術(shù)角度上說,SSI就是在HTML文件中,可以通過注釋行調(diào)用的命令或指針。SSI具有強大的功能,只要使用一條簡單的SSI命令就可以實現(xiàn)整個網(wǎng)站的內(nèi)容更新,時間和日期的動態(tài)顯示,以及執(zhí)行shell和CGI腳本程序等復(fù)雜的功能。
如何使你的Apache服務(wù)器支持SSI?
Apache默認是不支持SSI的,需要我們更改httpd.conf來進行配置。我這里以windows平臺的Apache 2.0.x為例:打開conf目錄下的httpd.conf文件,搜索“AddType text/html .shtml”,搜索結(jié)果:
# AddType text/html .shtml
# AddOutputFilter INCLUDES .shtml
把這兩行前面的#去掉。
然后搜索“Options Indexes FollowSymLinks”
在搜索到的那一行后面添加“ Includes”
即將該行改變?yōu)椋?/p>
Options Indexes FollowSymLinks Includes
保存httpd.conf,重起apache即可。
開啟shtml
打開文件 ./include/config.inc.php
<?php
//數(shù)據(jù)庫配置信息
define('DB_HOST', 'localhost'); //數(shù)據(jù)庫服務(wù)器主機地址
define('DB_USER', 'root'); //數(shù)據(jù)庫帳號
define('DB_PW', 'root'); //數(shù)據(jù)庫密碼
define('DB_NAME', 'phpcmsutf'); //數(shù)據(jù)庫名
define('DB_PRE', 'phpcms_'); //數(shù)據(jù)庫表前綴,同一數(shù)據(jù)庫安裝多套Phpcms時,請修改表前綴
define('DB_CHARSET', 'utf8'); //數(shù)據(jù)庫字符集
define('DB_PCONNECT', 0); //0 或1,是否使用持久連接
define('DB_DATABASE', 'mysql'); //數(shù)據(jù)庫類型
//網(wǎng)站路徑配置
define('PHPCMS_PATH', '/cms/phpcms_utf/'); //Phpcms框架訪問路徑,相對于域名
//shtml 支持
define('SHTML', 0); //是否支持 shtml,需要服務(wù)器支持,并且生成文件擴展名為 shtml
將它:
define('SHTML', 0); //是否支持 shtml,需要服務(wù)器支持,并且生成文件擴展名為 shtml
改成:
define('SHTML', 1); //是否支持 shtml,需要服務(wù)器支持,并且生成文件擴展名為 shtml
日期:2019-12 瀏覽次數(shù):4779
日期:2019-12 瀏覽次數(shù):4205
日期:2019-12 瀏覽次數(shù):3948
日期:2019-12 瀏覽次數(shù):4193
日期:2019-12 瀏覽次數(shù):4327
日期:2019-12 瀏覽次數(shù):4105
日期:2019-12 瀏覽次數(shù):4379
日期:2019-12 瀏覽次數(shù):4021
日期:2019-12 瀏覽次數(shù):4531
日期:2019-12 瀏覽次數(shù):4544
日期:2019-12 瀏覽次數(shù):4304
日期:2019-12 瀏覽次數(shù):4866
日期:2019-12 瀏覽次數(shù):4273
日期:2019-12 瀏覽次數(shù):4085
日期:2019-12 瀏覽次數(shù):4163
日期:2019-12 瀏覽次數(shù):4068
日期:2019-12 瀏覽次數(shù):4346
日期:2019-12 瀏覽次數(shù):4151
日期:2019-12 瀏覽次數(shù):4176
日期:2019-12 瀏覽次數(shù):5540
日期:2019-12 瀏覽次數(shù):4630
日期:2019-12 瀏覽次數(shù):4015
日期:2019-12 瀏覽次數(shù):4044
日期:2019-12 瀏覽次數(shù):4128
日期:2019-12 瀏覽次數(shù):4856
日期:2019-12 瀏覽次數(shù):3990
日期:2019-12 瀏覽次數(shù):3934
日期:2019-12 瀏覽次數(shù):4245
日期:2019-12 瀏覽次數(shù):3850
日期:2019-12 瀏覽次數(shù):4147
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.