Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想对这些地址进行重写,我在互联网上检查过,找不到适合这个的东西。所以我需要“http://www.xxx.com/ecommerce/automated/?city=london”
转换为“http://www.xxx.com/ecommerce/automated/London/”
尝试这个:
Options +FollowSymLinks RewriteEngine on RewriteRule (.*)/ index.php?city=$1 RewriteRule (.*) index.php?city=$1
它假设您使用的 URL 如下:
http://www.xxx.com/ecommerce/automated/index.php?city=london
请注意将“index.php”添加到您的原始 URL。