今天操作缺陷管理系统,突然就不能访问testlink,localhost、127.0.0.1可以访问,但通过远程IP无法访问testlink,解决方法如下:
C:\xampp\apache\conf
修改httpd.conf (发现端口被重置为80,ServerName 也被修改)
Listen 8088
ServerName localhost
<Directory />
AllowOverride none
Require all granted
</Directory>
重启apache服务
访问地址:http://10.10.80.68:8088/testlink/login.php ok!
本文介绍了一种解决TestLink远程访问故障的方法。当通过远程IP无法访问TestLink时,可以通过修改XAMPP中的Apache配置文件httpd.conf来解决。具体步骤包括调整监听端口、更改ServerName,并重启Apache服务。
5014

被折叠的 条评论
为什么被折叠?



