鋁門窗規劃、施工,經驗豐富
服務嚴謹、保固完善,免費估價,歡迎洽詢
客源網專業的施工團隊,新屋裝潢
舊屋裝修,套房規畫,室內裝修申請,完工保固

首頁  •  tw 論壇 • 新手討論     • 

.html

房東:ssdfs
發表時間:2007-01-23
[檢舉]


php動態頁面轉靜態
http://www.alan888.com/Discuz/thread-93166-2-1.html


http://www.optik.idv.tw/?p=96
http://open.38.com/

在這裡舉 PHPBB2 2.0.3 的例子來說,一步一步
http://www.phpbb.com/downloads.php
http://blog.xuite.net/mark.wu/x/8645348
http://www.phpwind.net/read.php?tid=147739
http://m2.thps.tpc.edu.tw/~th990030/phpbb2.htm
http://forum.virtualhost.tk/thread-805-1-1.html

http://man.chinaunix.net/newsoft/ApacheMenual_CN_2.2new/rewrite/rewrite_guide_advanced.html
http://www.phpwind.net/read.php?tid=147739


http://www.phpchina.com/bbs/archiver/tid-3743.html

http://topic.csdn.net/t/20060217/11/4561298.html
http://www.dedecms.com/web-art/PHP_jiaocheng/20051102/32814.html
http://www.freediscuz.net/bbs/viewthread.php?tid=422
http://www.cnblogs.com/amgod/archive/2005/04/14/137776.aspx
http://www.wujianrong.com/archives/2006/04/php_5.html
http://publish.it168.com/2006/0312/20060312004801.shtml?positioncode=1548
http://www.knowsky.com/2972.html


Discuz!頁面改靜態


http://www.soholife.cn/bbs/viewthread.php?tid=1246
http://www.discuz.net/viewthread.php?action=printable&tid=409364###
http://discuz.bluelovers.net/redirect.php?tid=836&goto=lastpost
http://www.gainbysurf.com/blog/post/32.htm



Apache動態頁面轉靜態

http://forum.lifetype.org.tw/index.php?topic=2525.msg14583
http://blog.pwchi.info/?p=4
http://topic.csdn.net/t/20040617/17/3101274.html
http://club.21php.com/showthread.php?t=9856
http://www.web888.org/bbs/showthread.php?t=5677
http://www.gainbysurf.com/blog/


http://www.gainbysurf.com/blog/read.php?32
http://pesty.yichi.org/blog/2005/12/18/mediawiki_and_pretty_url/
找到 httpd.conf (usually:/usr/local/etc/apache/),想辦法打開它,搜一下找到這行
#LoadModule rewrite_module modules/mod_rewrite.so
去掉前面的註解,啟用她。

#此處是你要開放使用.htaccess的目錄,此為全。
#亦可改為/your/web/root/gallery2 限定。

Option FollowSymLinks
AllowOverride None #此改為 AllowOverride FileInfo


最後再reload apache,應該就能順利通過測試了。
然後好好享受漂亮沒有變數防止盜連的網址吧! : ]




關於Apache2 mod_rewrite 設定問題…
設定方式出乎意料的簡單呀,只要在 http.conf 檔案裡設定如下 首先先檢查apache2中
#LoadModule rewrite_module modules/mod_rewrite.so
#字號移除。 然後在全域設定項目內添加下列字串。
RewriteEngine On
然後在虛擬伺服器中資料夾設定項裡添加下列三行。

AllowOverride All
Order allow,deny
Allow from all



要特別注意的一點,得記得把該目錄的 AllowOverride 設置為 All (Apache設定檔裡面)。
如果是 None 的話,mod_rewrite 不會生效。

像我的CentOS預設就是把 /var/www/html 的 AllowOverride 設置為 None,所以得去編輯 /etc/httpd/conf/httpd.conf ,找到 ... 裡面的 AllowOverride,改為 All,再重新啟動 httpd 即可。





RewriteEngine on
RewriteBase /blog/
RewriteRule ^post/([0-9]+).htm$ read.php?$1
RewriteRule ^post/([0-9]+)_([0-9]+).htm$ read.php?$1&page=$2
RewriteRule ^post/([0-9]+)_([0-9]+)_([0-9]+).htm$ read.php?$1&page=$2&part=$3
RewriteRule ^index_([0-9]+)_([0-9]+).htm$ index.php?mode=$1&page=$2
RewriteRule ^star_([0-9]+)_([0-9]+).htm$ star.php?mode=$1&page=$2
RewriteRule ^category_([0-9]+).htm$ index.php?go=category_$1
RewriteRule ^category_([0-9]+)_([0-9]+)_([0-9]+).htm$ index.php?go=category_$1&mode=$2&page=$3
RewriteRule ^archive_([0-9]+)_([0-9]+).htm$ index.php?go=archive&cm=$1&cy=$2
RewriteRule ^archive_([0-9]+)_([0-9]+)_([0-9]+)_([0-9]+).htm$ index.php?go=archive&cm=$1&cy=$2&mode=$3&page=$4
RewriteRule ^showday_([0-9]+)_([0-9]+)_([0-9]+).htm$ index.php?go=showday_$1-$2-$3
RewriteRule ^showday_([0-9]+)_([0-9]+)_([0-9]+)_([0-9]+)_([0-9]+).htm$ index.php?go=showday_$1-$2-$3&mode=$4&page=$5
RewriteRule ^tag/(.+)$ tag.php?tag=$1&rewrite=1





  • 贊助網站       

    租屋網
    提供租屋資訊、租屋廣告刊登、房屋託租、房客尋屋、租屋配對、電子地圖、房屋資料上傳
    搬家公司
    本公司為政府立案專業搬家公司,我們秉持客戶至上,正派經營理念,在大台北縣市一直有口碑
    明日黃金屋
    買屋、賣屋、租屋、出租、房東租屋刊登、並提供租屋、最專業的服務、最安全親切的交易。



  •  共 0 人回應

    姓名:
    佈告內容: