PDA

View Full Version : how can i go about doing this



is0lized
May 22nd, 2002, 02:52
i want to be able to view php scripts outside of a webpage type folder in apache - all arround diff folders in my pc...

anyway to do this?

JdS
May 22nd, 2002, 13:29
if u use Apache, u can (if i understood ur question well)

sample : just add these lines to httpd.conf



Alias /dbadmin/ "F:/mydocu~1/dbadmin/"
<Directory "F:/mydocu~1/dbadmin">
Options Indexes FollowSymlinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>


and now u can just type http://localhost/dbadmin to get to that folder.