可能重复:
htaccess and rewriting
我怎样才能重写像这样的东西
http://website.com/sub.php?cat_id=3&photo_id=324
这样的事情
http://sub.website.com/3/324/
使用根文件夹中的htaccess文件
最好的问候, 亚历山大
答案 0 :(得分:0)
RewriteEngine on
RewriteBase /
RewriteRule ^(\d+)/(d+)/?$ sub.php=?cat_id=$1&photo_id=$2