我想使用.htaccess
重定向到 php 并传递一些值。就像我有一个页面调用 products.php,当我设置www.example.com/products.php?id=1111
它时,它将转到 id 为 1111 的产品。
我希望将网址更改为www.example.com/products/1111.html
.
我尝试将以下内容放入.htaccess
:
# product
# /product/shortname.html
# product.php?id
RewriteRule ^product/([0-9]+)(.*)\.html$ product\.php\?id=$1&type=deals [QSA,L]
但它失败了。