WAMP - Remove localhost from project URL

前端 未结 16 1663
暖寄归人
暖寄归人 2020-12-02 11:01

The URLs of my projects in WAMP are not resolving as I\'d expect. For example, I\'d expect the project in the folder c:\\wamp\\www\\project1 to have the URL http://project1/

16条回答
  •  醉梦人生
    2020-12-02 11:37

    C:\wamp\www
    
    In index.php 
    line 338 
    
    ($suppress_localhost ? 'http://' : '')
    
    
    change http://   to http://localhost/
    

提交回复
热议问题