这应该是一个简单的问题,但我无法弄清楚。我有一个在机器上运行的网页,可以从本地网络访问。我想将在 cgi 下运行的脚本的结果重定向回我的/var/www/index.html/
文件。我试图在我的 /etc/apache2/apache2.conf 中放置一个重定向行,但它不起作用,所以我尝试了一个更简单的任务:
redirect permanent /var/www/index.html http://www.google.com
甚至这都行不通。
我究竟做错了什么?
我在 Ubuntu 机器上运行它。
编辑:
当我重新启动服务器时,这将添加到我的错误日志中:
[Sat Jun 16 17:26:36 2012] [notice] caught SIGTERM, shutting down | * Restarting web server apache2
[Sat Jun 16 17:26:36 2012] [notice] Apache/2.2.22 (Ubuntu) configured -- \|apache2: Could not reliably determine the server's fully qualified domain \
resuming normal operations
编辑:解决了一个新问题
我已经设法将网页重定向到谷歌,现在我想做实际的重定向。我已将此添加到我的apache2.conf
文件中
Redirect permanent /cgi-bin/file.cgi /index.html
并删除了以前的文件。该文件现在被重定向到谷歌而不是回到我的主文件......
这是怎么回事?