所以我继承了一些PHP代码。
我将DocumentRoot
和Directory
路径更改为
C:\dev\CustomCloud\prod
但是,现在当我访问localhost
时,我看到了大量的404错误
似乎PHP代码正在尝试解析localhost / matchmaking /
的ALIAS示例:
C:\dev\CustomCloud\prod\assets
时
http://localhost/matchmaking/assets/
解决此问题的最佳或最简单的解决方案是什么,因为我很少使用PHP,但我需要Apache在本地提供此代码,以便我可以使用代码等...
答案 0 :(得分:0)
在你的浏览器网址中输入https //:localhost,如果它显示apache主页。然后在你的Windows PC上成功安装apache ..然后在xammp中创建一个文件 - > htdocs - > index.php在此文件中放置以下代码或您要在浏览器上运行的文件夹。
<?php
echo phpversion();
?>