我正在尝试为我的网站设置两个不同的.htaccess
规则,但我仍然找不到正确的解决方案。
我想把所有东西都安排website.com/almost-everything
好——这对我很有效。此外,我还想添加这条路线:website.com/car/car_id
- 麻烦来了,我不知道如何设置它。
这是我的尝试:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?skill=$1 [L,QSA]
RewriteRule ^car/(.*)$ ./index.php?id=car&car_id=$1 # the wrong rule - the page with website.com/car/car_id just doesn't display the correct file
你能帮我解决第二条规则吗?