我正在使用Netbeans构建一个简单的PHP站点。在运行配置中,我将Run as
属性设置为PHP Built-in Web Server (running on built-in web server)
。
当我运行项目时,index.php文件及其中的所有文本都会加载,但没有正确加载CSS样式,Javascript或图像文件。我在控制台中遇到关于CSS的错误:
Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://localhost:8000/css/main.css".
当我查看Chrome中已加载的内容时,我发现css响应为空。所有Javascript都是如此。
我尝试从命令行在PHP网络服务器中运行它:
php -S localhost:8001
这完美无缺!所以我认为这个问题与某种Netbeans配置有关。我正在使用Chrome浏览器运行它,并尝试打开和关闭“Netbeans连接器”,但无济于事。如果有人知道问题可能是什么,我会很感激帮助!