如何使用.htaccess重定向像
这样的网址 http://sample.com/photos.php?cat=13&sort=most_recent&time=all_time
到
http://sample.com/photos/comedy
谢谢。
答案 0 :(得分: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
(未经测试)