Reg routing

Hi
In my application all my images are in the outside of public
folder.so i want to access that folder and i want to display image

Eg:

 Myapp
   |->app
      config
      db
      .
      .
      .
      public
      .
      .
      myapp_image
            |-> images
                   |-> abc.jpg

so this is my folder structure i want to acces abc.jpg…if any one
knows how to access pls help me

with regrds
shiva

you would use:
image_tag("…/myapp_image/images/abc.jpg")

the … to get one up from the default path /public
but it’s no good way to have your folder structure that way
images should go in a folder below public like:
/public/images
and be accessed with:
image_tag("/images/abc.jpg")

Thorsten M. wrote:

you would use:
image_tag("…/myapp_image/images/abc.jpg")

the … to get one up from the default path /public
but it’s no good way to have your folder structure that way
images should go in a folder below public like:
/public/images
and be accessed with:
image_tag("/images/abc.jpg")

thanks for your reply

but it is not working.