Oxwall htaccess删除松散的php文件上的扩展名并忽略index.php重写

时间:2016-07-27 14:42:45

标签: .htaccess mod-rewrite oxwall

我正试图在我的oxwall网站上创建一个松散的页面。

oxwall的标准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 %{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} !/e500\.php
RewriteCond %{REQUEST_URI} !/captcha\.php

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

现在我有一个文件file.php,放在我网站的根目录下。 我希望能够像这样访问此文件: http://www.website.com/test

我已经能够使用以下方法从重写文件中排除该文件:

RewriteCond %{REQUEST_URI} !/test.php

所以现在我可以像这样访问我的文件: http://www.website.com/test.php

或者我已经能够删除这样的扩展程序:

RewriteRule ^test test.php

现在,如果我这样做,真正的索引将不再正确加载。

有谁知道我做错了什么。或者你有一个我可以使用的不同解决方案吗?

谢谢,罗宾

1 个答案:

答案 0 :(得分:0)

通过创建名为test的文件夹并在此文件夹中添加index.php来解决此问题

在最终规则之前使用的htaccess代码为RewriteCond %{REQUEST_URI} !/test/ 所以现在我对这个页面的网址是http://www.website.com/test

这一小时浪费的一个简单解决方案

干杯