javascript – 无法GET /与gulp-connect-php

前端之家收集整理的这篇文章主要介绍了javascript – 无法GET /与gulp-connect-php前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用 gulp-connect-php尝试使用BrowserSync本地运行PHP服务器.这是我的gulp配置文件
var gulp = require('gulp'),connect = require('gulp-connect-PHP'),browserSync = require('browser-sync');

gulp.task('connect-sync',function() {
  connect.server({},function (){
    browserSync({
        server: {
            baseDir: "app"
        },// proxy: '127.0.0.1:8000'
    });
  });

  gulp.watch('**/*.PHP').on('change',function () {
    browserSync.reload();
  });
});

gulp.task( 'default',[ 'connect-sync' ] )

上述代码在我的应用程序目录中有一个index.html文件,但是当我用一个index.PHP文件替换它,我得到以下消息:

Cannot GET /

不完全确定我在这里做错了什么

解决方法

我从你的问题中了解到,PHP服务不能识别.PHP文件.有两种方法来完成这项工作.

Apache(httpd.conf),搜索DirectoryIndex并将其替换为(仅在启用dir_module时有效,但大多数情况下都是默认值)或者添加index.PHP

DirectoryIndex index.PHP index.phtml index.html index.htm

要么
在Web根目录中创建一个.htaccess文件.
添加行…

DirectoryIndex index.PHP

希望这可以帮助!

原文链接:https://www.f2er.com/js/154017.html

猜你在找的JavaScript相关文章