我的服务器上有一个名为looksLikeAdirectoryButReallyIsPHPfile
的硬链接(使用php link()
function创建),并且链接到aRealDir/index.php
looksLikeAdirectoryButReallyIsPHPfile
和aRealDir
位于Web服务器的根目录中
然而,当我请求http"//example.com/looksLikeAdirectoryButReallyIsPHPfile
时,我得到的是源代码,而不是代码的PHP处理结果。
我在根目录的.htaccess文件中尝试了这个处理程序,但它没有做任何事情:
<Files "looksLikeAdirectoryButReallyIsPHPfile">
SetHandler application/x-httpd-php
</Files>