2008年4月25日 星期五

Cakephp的rewrite模組

使用cakephp需要正確的設置
rewrite模組才能使webroot中的img js css正確使用

已CentOS 5 為例

需要在
/etc/httpd/conf/http.conf

設置

Options FollowSymLinks
AllowOverride All


AllowOverride All

並且在該網站的資料夾中
加入

.htaccess檔


RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L] RewriteBase /~username/cakephp/

注意 username需填入你的使用者的資料
或許你的網站資料不是在家目錄中,需依照現實情況填入資料