我需要做些什么配置:localhost / Name /而不是localhost:8080?
在这种情况下我该怎么办?
Exenple localhost:8080/NoName/View/LogRegister/LogRegisterForm.php
是我的原始链接,我想拥有以下链接:
localhost/NoName/View/LogRegister/LogRegisterForm.php
谢谢
答案 0 :(得分:5)
不是" PHP" - 这是使用的语言。 XAMPP通常使用Apache作为它的Web服务器,它是确定端口的Web服务器。
寻找http.conf
。编辑它,并将端口更改为" 80"。以下是更多细节:
How to change XAMPP apache server port?
我相信您也可以使用" xampp.ini":
Busy... Apache started [Port 80]
===============================================
附录:
我不理解你。
总有一个"端口"。
如果您没有指定端口,则默认为" 80" (对于http)或" 443" (对于https)。
示例:
http://localhost:8080/index.php:您明确表示" index.php"和"端口8080"。
http://localhost/index.php:端口80是隐含的。
http://localhost:80/index.php:端口80是显式的。实施例2)和3)是等同的。最后,
http://localhost表示a)端口80,b)index-dot-something:index.html
,index.htm
,index.php
,index.jsp
,等等 - 无论您将其配置为"默认页面"。
'希望有所帮助...
答案 1 :(得分:1)
当您使用Virtual Host
时,您应该查找名为httpd-vhosts.conf
的文件。在那里,您可以查找所需的Virtual Host
并更改端口。
注意:也许Virtual Host
放在主apache配置中。然后查找名为httpd.conf
的文件并在那里进行更改。
注意2:默认端口为80,因此请将8080
替换为80
。然后你可以写localhost/path/to/file