How do I find the version of Apache running without access to the command line?

前端 未结 11 2192
失恋的感觉
失恋的感觉 2020-12-04 12:37

I need to either find a file in which the version is encoded or a way of polling it across the web so it reveals its version. The server is running at a host who will not pr

11条回答
  •  一整个雨季
    2020-12-04 13:32

    Use this PHP script:

     $version = apache_get_version();
        echo "$version\n";
    

    Se apache_get_version.

提交回复
热议问题