2013-06-03 117 views
1

我剛剛在我的共享1and1主機上安裝了oxwall(oxwall.org),並希望從所有網址中刪除「index.php」。從Oxwall網址中刪除index.php

本質PHP需要看到這個 http://site.com/index.php/Page/Param1/Param2

雖然我希望用戶看到這個 http://site.com/Page/Param1/Param2

我明白這應該使用.htaccess文件來實現,但我不」 t知道該怎麼做...

目前,.htaccess文件看起來像這樣:

Options +FollowSymLinks 
RewriteEngine On 

AddEncoding gzip .gz 
AddEncoding gzip .gzip 
<FilesMatch "\.(js.gz|js.gzip)$"> 
    ForceType text/javascript 
</FilesMatch> 
<FilesMatch "\.(css.gz|css.gzip)$"> 
    ForceType text/css 
</FilesMatch> 

RewriteCond %{HTTP_HOST} !oxwall.(host).com$ 

RewriteCond %{REQUEST_URI} !^/index\.php 
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php 
RewriteCond %{REQUEST_URI} !/ow_updates/ 
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php 
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC] 
RewriteRule (.*) index.php 

有什麼建議嗎? 我在stackoverflow上發現了類似的消息,但我無法將建議的修復應用於我的.htaccess文件...

非常感謝您的時間和支持!

回答