我刚刚在我的共享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文件...
非常感谢您的时间和支持!
答案 0 :(得分:-1)
找到解决方案! 只需使用本主题中提到的htaccess代码:http://www.oxwall.org/forum/topic/7924
希望这有助于其他人!