2

我是 URL 重写的新手,所以我只是掌握了窍门。我遇到的问题是我的规则有效并拉出了正确的页面,但是在页面加载后,它会显示重写的 URL,而不是地址栏中的尾部斜杠。

RewriteEngine on 
RewriteBase /
RewriteRule   ^(.+)/(.+)/([0-9]+)$  ^testing.php?do=$1&see=$2&id=$3 [NC,L]

因此,我没有在地址栏中看到 http://www.example.com/walk/cars/9843928,而是看到http://www.example.com/testing.php?do=walk&see=cars&id=9843928

锄头我可以让它正常工作并在栏中保留尾部斜杠 URL 吗?

4

1 回答 1

2

目标 URL 不应以^.

用这个替换你的代码:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^([^/]+)/([^/]+)/([0-9]+)/?$ testing.php?do=$1&see=$2&id=$3 [L,QSA]
于 2013-09-20T10:08:16.680 回答