我想删除某个文件的 php 扩展名(只有这个!)。但是:它使用获取参数,它们应该保留!
我用我的.htaccess
和类似的东西尝试过:RewriteEngine on
其次是
RewriteRule ^file(.*)$ file.php$1
或者
RewriteRule ^file(.+)$ file.php$1
但它不起作用。(第一次给出错误 500,第二次给出 404)
示例我想在浏览器中调用的内容:
file?param=asd&foo=bar
它应该调用为:
file.php?param=asd&foo=bar