从Oxwall URL中删除index.php

时间:2013-06-03 15:29:45

标签: .htaccess mod-rewrite

我刚刚在我的共享1and1主机上安装了Oxwall(oxwall.org),并希望从所有网址中删除“index.php”。

  

基本上PHP需要看到这一点   http://site.com/index.php/Page/Param1/Param2

     

虽然我希望用户看到这个   http://site.com/Page/Param1/Param2

我明白应该使用.htaccess文件来完成,但我不知道怎么做...

目前,.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文件...

非常感谢您的时间和支持!

1 个答案:

答案 0 :(得分:-1)

找到解决方案! 只需使用本主题中提到的htaccess代码:http://www.oxwall.org/forum/topic/7924

希望这有助于其他人!