mod_rewrite到搜索引擎优化网址



如何使用.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

(未测试)

相关内容

  • 没有找到相关文章

最新更新