开发者

folder redirect problem

开发者 https://www.devze.com 2023-01-19 03:00 出处:网络
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:

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

精彩评论

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