有没有办法用斜杠替换所有问号、'&'和等号???
目前我只用 .html 替换 php 扩展
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)\.html$ $1.php [nc]
现在,如果网站网址是这个
http://www.mydomain.com/session/image-display.php?image=1&id=59
用户应该得到
http://www.mydomain.com/session/image-display.html/image/1/id/59
--已编辑--
我只需要一个示例,以便我也可以为其他页面编写它们。还如何重写 2 个或更多重写规则?