1,、要隱藏Thinkphp項目中index.php文件名,,需在config.php中設(shè)置'URL_MODEL'=>2,并且需要在.htaccess 中隱藏index.php,,前者依賴于后者,,否則可能導(dǎo)致Thinkphp項目中模塊無法正常訪問。 http://localohost/News/view/id/45.html 復(fù)制代碼 但這并不能滿足我們的URL優(yōu)化效果,因為更好的SEO優(yōu)化地址可能是這種形式: http://localohost/News/2009-11-04/45.html cufflinks wholesale這就需要我們更好的手動的去做為靜態(tài)了,。
RewriteRule ^News/(.*)/([0-9]+)\.html$ /News/view/id/$2 復(fù)制代碼 結(jié)果提示找不到模塊,,并且在根目錄下的Discuz論壇為靜態(tài)也失效,,看來隱藏index.php后果很嚴(yán)重。
RewriteRule ^News/$ index.php/News/ RewriteRule ^News/category([0-9]+).html$ index.php/News/category/classid/$1 RewriteRule ^User/$ index.php/User/ RewriteRule ^News/(.*)/([0-9]+)\.html$ index.php/News/view/id/$2 …… discount nike air shoes RewriteRule ^News/category([0-9]+).html$ index.php?m=News&action=category&classid=$1 復(fù)制代碼
|
|