PHP的变化?从url到/

时间:2019-07-08 22:03:11

标签: php url routing

我想更改PHP中的链接 http://localhost/dispatch.php?category=lupa&id=1(or任何整数) 我在互联网上发现了许多htacces,但这不是动态的。我有10-20页和1-5个参数/链接。在互联网上,仅index.php的htacces和1个参数。我想要一个动态的htacces,应用于所有页面和所有参数,例如laravel路由。

1 个答案:

答案 0 :(得分:0)

您可以这样写:

RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$ /dispatch.php?category=$1&id=$2 [L]