2013-12-13 131 views
0

我htaccess的是這樣的:htaccess的請求的URL /沒有被此服務器上找到

RewriteEngine On 
RewriteBase/
RewriteRule ^css/(.*\.css) /combine.php?type=css&files=$1 
RewriteRule ^javascript/(.*\.js) /combine.php?type=javascript&files=$1 

和瀏覽器顯示錯誤:

未找到

請求的URL /組合.php在此服務器上未找到。

有人請幫助me..thanks。

+0

錯誤說,所有的Web服務器找不到'combine.php'。它的位置在哪裏? – anubhava

+0

combine.php位於Web根 –

+0

你能直接打開:'HTTP:在瀏覽器// domain.com/combine.php'? – anubhava

回答

0
^context/(css|js)/(.*)/?$ /combine.php?type=$1&files=$2 

例如:

/context/css/testcss/ 
    /context/js/testjs/ 

將分別重新當作使用:

/combine.php?type=css&files=testcss 
    /combine.php?type=js&files=testjs 

確保有這個,這個模式相匹配之前沒有其它條目。

相關問題