如何使用.htaccess重定向网址,例如
http://sample.com/photos.php?cat=13&sort=most_recent&time=all_time
自
http://sample.com/photos/comedy
谢谢。
你需要将"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
(未测试)