in reply to Accessing symbolic links from a browser
Options +FollowSymLinksThis can go in your .htaccess if you are allowed to override it. This could require modifying your base httpd.conf file to allow this. I usually just let anyone do anything on any server to which there is controlled access:
AllowOverride AllWhat might also be causing the trouble is that your script is no longer inside the /cgi-bin directory. You might need to assign the proper handler:
AddHandler cgi-script .cgiFor mod_perl this would be, of course, perl-script.
|
|---|