1

我刚刚在我的共享 1and1 主机上安装了 Oxwall (oxwall.org),并希望从所有 URL 中删除“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 文件中......

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

4

1 回答 1

-1

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

希望这对其他人有帮助!

于 2013-06-04T09:45:28.267 回答