Mod_Rewrite虚拟目录问题

时间:2013-12-11 21:04:52

标签: regex apache .htaccess mod-rewrite

我想知道如何重写这个:

https://www.johndong.net/Programs/Files/b85c73b3ee77c9762161edf89b63041217acccdc

到此:

https://www.johndong.net/Programs/Files/view.php?file=b85c73b3ee77c9762161edf89b63041217acccdc

这是我的代码:

Options +FollowSymLinks
RewriteEngine on
RewriteRule https://www.johndong.net/Programs/Files/(.*) https://www.johndong.net/Programs/Files/view.php?file=$1

1 个答案:

答案 0 :(得分:0)

RewriteRule仅匹配REQUEST_URI(没有域名)。请改用此规则:

RewriteEngine on


RewriteRule ^(Programs/Files)/([^./]+)/?$ /$1/view.php?file=$2 [L,NC,QSA]