arrorkashpasy
New Member
want to access some images and pdf files in the following directory in php. My Directory structure is as follows\[code\]root /mc /files /import /folder1 image pdf /folder2 image pdf/vboxes /application /controllers /models /views /public\[/code\]I tried these codes in my httpd.config file \[code\]<IfModule mod_alias.c> Alias /images /mc/files/import <Directory /mc/files/import> Order allow,deny Allow from all </Directory></IfModule><IfModule mod_alias.c> AliasMatch ^/images(.*) /mc/files/import$1</IfModule>\[/code\]Then I tried to use image sourse = '/images/folder1/image.jpg' but none of them workingHow can I make mc/files/import make visible to access the images and pdf files in the browser.Please help meThanks