尽管网络上有很多关于它的文章,我都无法理解重写 URL 背后的概念。
假设我要查看的网页的绝对路径是www.abc.com/games.php?game=1
. 我希望链接www.abc.com/games/game/1
重定向到上面的页面。
这条规则对它不起作用吗?
RewriteRule games/game/([^/\.]+)/?$ games.php?game=$1 [L]
我的.htaccess file
RewriteEngine On
RewriteBase /
RewriteRule games/game/(\d+)/?$ games.php?game=$1 [L, QSA]