There should be an index.php file in your links directory, if it is there then your web server isn't configured to run index.php by default. If it isn't there, its really a pretty simple file that just redirects the browser to the actual script, the file named "directory" see
the original here
Try viewing
www.mysite/links/directory/ .. if you get a 404 or 500 error, that is when you need to switch to a different Foprcetype/Sethandler line.
If needed you can tell your web server to server the index.php file when no file is requested by adding to to the same .htacess
| Code: |
DirectoryIndex index.php index.htm default.htm
|
(Apache will try each of these in the order specified)