Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的查询字符串:
product_details.php?id=17&name=dhruba
我如何将其更改为:
product_details/dhruba
请解释我如何从数据库中重定向带有标题的 id。我正在使用 id 进行所有计算。
您将需要一个 .htaccess 文件中的 mod_rewrite 规则,它应该看起来像这样:
Options +FollowSymLinks RewriteEngine on RewriteRule ^product_details/(.*)$ product_details.php?name=$1 RewriteBase /
尽管如果您还需要 ID,我建议将其作为参数传递给重写规则。