I've created a symlink using PHP, but whenever I try to visit the link, I get a 404 Error.
If I browse to the symlink via FTP, I can see that it exists.
Is there something I can do to resolve this?
Thanks!
I've created a symlink using PHP, but whenever I try to visit the link, I get a 404 Error.
If I browse to the symlink via FTP, I can see that it exists.
Is there something I can do to resolve this?
Thanks!
make sure that the httpd.conf file has this option set
Options FollowSymLinks
or
Options +FollowSymLinks
That should take care of it
You must log in to post.