0

如何使用 .htaccess 重定向 URL,例如

http://sample.com/photos.php?cat=13&sort=most_recent&time=all_time

http://sample.com/photos/comedy

谢谢你。

4

1 回答 1

1

您需要将“cat”参数设为字符串 (http://sample.com/photos.php?cat=comedy&sort=most_recent&time=all_time) 然后您可以使用此规则。

RewriteEngine on     
RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/?$ $1.php?cat=$2&sort=most_recent&time=all_time

(未测试)

于 2012-09-18T08:26:16.407 回答