使用.htaccess用GET变量重写URL

时间:2015-08-08 19:52:17

标签: .htaccess

我想提出我的网址:

example.com/index.php?this=a&that=b

为:

example.com/index.php/a/b

因此,只要有人直接访问此页面:

example.com/index.php/a/b

它将在地址栏中显示为已键入,但将呈现以下内容:

example.com/index.php?this=a&that=b

这是怎么做到的?

1 个答案:

答案 0 :(得分:1)

您可以在.htaccess

中使用它
RewriteEngine on 
RewriteRule ^index\.php/([^/]+?)/(.+)/?$ index.php?this=$1&that=$2 [L,NC]