标签: php .htaccess
我的网址如下:
page.php?id=1&lan=en
我想通过htaccess将其更改为page-1.html?lan=en 请注意,我必须同时获得两个参数id和lan的值 提前谢谢。
page-1.html?lan=en
id
lan
答案 0 :(得分:1)
您可以使用以下代码。我没有尝试,但它应该工作
Options +FollowSymlinks RewriteEngine On RewriteRule ^page-(\d*).html$ page.php?id=$1 [L,QSA]