开发者

folder redirect problem

I am trying to redirect all the file开发者_C百科s and sub folders of a folder named scripts which is not in root directory means:

from

http://localhost/(any folder)/(another any folder)/scripts/script.js

to

http://localhost/scripts/script.js

becasue I have placed the scripts folder in the root of the server.


What about :

RewriteRule .*/scripts/(.*)$ scripts/$1

?


RewriteEngine on 
RewriteRule /[^/]+/[^/]+/scripts/(.+)$ /scripts/$1 [L]
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜