如何让网站运行perl CGI脚本而不在URL中包含脚本名称?

时间:2012-10-12 15:00:53

标签: perl url cgi

当用户访问“http://www.mydomain.com/”时,返回当前的index.html。相反,我想运行一个CGI脚本。我该怎么做?

1 个答案:

答案 0 :(得分:1)

如果您正在使用Apache,可以在VirtualHost配置中添加类似的内容:

DirectoryIndex index.cgi index.html index.htm

这会导致Web服务器首先查找index.cgi,然后返回index.html然后index.htm这是一种方法,当然,你需要确保你的脚本是命名为index.cgi(或您想要使用的任何默认名称。可以找到更多信息in the Apache docs for mod_dir