我需要将任何对 html 文件的调用更改为 php,并且应该将完整路径和文件作为 get 参数传递。
例如
http://www.domain.com/any/path/file.html
应该成为
http://www.domain.com/index.php?path=any-path-file.html
我想通过 php 文件将每个调用路由到 html 文件。重写应忽略任何其他文件。
另外:是否可以再次添加其他参数?
/file.html?foo=bar
becomes
/index.php?path=file.html&foo=bar
提前感谢