htaccess:捕获包含真实子文件夹的特定URL类型

时间:2018-03-13 23:53:08

标签: php .htaccess

我有一个" something.php"和根目录中的子文件夹,此子文件夹中有html文件。我想捕获包含此子文件夹的特定URL类型。

.htaccess
something.php
/subfolder/1.html
/subfolder/2.html
/subfolder/image.jpg
...

所以我想要一个像这样的RewriteRule(仅适用于html):

RewriteRule ^subfolder/(.*).html$ /something.php?file=subfolder/$1.html [L]

此时服务器尝试直接在子文件夹中打开1.html而不是使用something.php我的规则有什么问题?谢谢你的帮助。

0 个答案:

没有答案