重写没有文件名的htaccess

时间:2013-01-16 00:48:11

标签: php .htaccess rewrite

我想对这些地址进行重写,我通过互联网查看,找不到适合自己的东西。 所以我需要“http://www.xxx.com/ecommerce/automated/?city=london”

转换为“http://www.xxx.com/ecommerce/automated/London/”

1 个答案:

答案 0 :(得分:0)

试试这个:

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*)/ index.php?city=$1
RewriteRule (.*) index.php?city=$1  

它假设您使用的网址如下:

http://www.xxx.com/ecommerce/automated/index.php?city=london

请注意在原始网址中添加“index.php”。