我怎样才能用 GET 重写我的 url htaccess

how can i rewrite my url htacceess with GET

我在重写我的 url 时遇到问题 我该如何重写下面的 url :

http:///localhost/Car/index.php?page=allCars&numpage=2

这是用于测试的php和html代码

使用您显示的示例,请尝试遵循 htaccess 规则文件。请确保在测试您的 URL 之前清除您的浏览器缓存。这些规则假定您的 htaccess 存在于 Car folder/directory.

Options All -Indexes -Multiviews
RewriteEngine On 
RewriteBase /Car/
RewriteRule ^([-a-zA-Z0-9]+)/?$ index.php?page= [QSA,L]
##External rewrite rule.
RewriteCond %{THE_REQUEST} \s/index\.php\?page=([^&]*)&numpage=(\d+)\s [NC]
RewriteRule ^ /Car/%1/%2? [R=301,L]
##Internal rewrite rule.
RewriteRule ^([^/]*)/([^/]*)/?$ Car/index.php?page=&numpage= [L]