标签: php .htaccess url url-rewriting
我有以下网址:
http://example.com/cars.php?category=suv?car_title=benz
我希望网址看起来像这样:
http://example.com/cars/suv/benz
答案 0 :(得分:2)
您可以在htaccess文件中使用此结构:
Options +FollowSymLinks RewriteEngine on RewriteRule ^cars/(.*)/(.*)/?$ /car.php?category=$1&car_title=$2 [NC,L]