Url重写帮助删除问号和.php

时间:2016-05-24 10:36:43

标签: php .htaccess url url-rewriting

我有以下网址:

http://example.com/cars.php?category=suv?car_title=benz

我希望网址看起来像这样:

http://example.com/cars/suv/benz

1 个答案:

答案 0 :(得分:2)

您可以在htaccess文件中使用此结构:

Options +FollowSymLinks
RewriteEngine on
RewriteRule ^cars/(.*)/(.*)/?$ /car.php?category=$1&car_title=$2 [NC,L]