Link to home
Start Free TrialLog in
Avatar of Kinderly Wade
Kinderly WadeFlag for United States of America

asked on

unable to see all the files under public folder in document root path

Dear experts,

I wish to see all the files under the public folder but I wasn't able to configure the apache .conf file correctly that allows me to see all the files. When I access the public folder from browser, it will auto redirect me to my index.php. I wish to see other .php files as well.

I am using xampp to run my web.

Here is my setup:

DocumentRoot: D:\http\webroot\

for <Directory\> and <Directory D:\http\webroot> I didn't change anything which those are the default values been setup by xampp.

Do I need to make some changes there?

I have .htaccess file also. (I turn on the rewrite.so in apache)

Options +FollowSymlinks

RewriteEngine On
RewriteCond %[REQUEST_FILENAME] -s[OR]
RewriteCond %[REQUEST_FILENAME] -l [OR]
RewriteCond %[REQUEST_FILENAME] -d
RewriteBase /JADSystem
RewriteRule ^.*$ - [NC,L}
RewriteRule ^.*$ index.php [NC,L]

Let me know if I need to reconfigure it also. Thanks.
ASKER CERTIFIED SOLUTION
Avatar of gr8gonzo
gr8gonzo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Kinderly Wade

ASKER

Thanks gr8g. That's the answer I was looking for "DirectoryIndex"