Wamp server 2.5 wrong page redirection

后端 未结 3 1916
天命终不由人
天命终不由人 2020-12-28 23:16

I installed wamp server 2.5 with PHP 5.5. Now, when i try to access my project pages from the front page(wamp home page), it redirect to a wrong url and shows google cannot

3条回答
  •  [愿得一人]
    2020-12-28 23:46

    Honestly I think its highly inefficient to create Virtual Host for every.. single.. project. So after investigating I found a key variable in:

    wamp/www/index.php.
    

    After quick analysis, the variable's obvious purpose is to remove the 'localhost' in projects links.

    Change this line:

    $suppress_localhost = true;
    

    To this:

    $suppress_localhost = false;
    

提交回复
热议问题