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]
精彩评论