admin管理员组

文章数量:1341739

I installed Laravel 5.4 in my server /public_html/laravel/ folder. When I access example/lavarel/public/, it works.

I copied all my piled files in my local public/ folder into the example/lavarel/public/. Then I add the <script src="/js/app.js"></script> into my wele.blade.php:

<!doctype html>
<html lang="{{ config('app.locale') }}">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="csrf-token" content="{{ csrf_token() }}">
        <title>Laravel</title>
        <!-- UIkit CSS -->
        <link rel="stylesheet" href=".0.0-beta.25/css/uikit.min.css" />
        <!-- <link rel="stylesheet" href="assets/sass/uikit.css" /> -->

        <!-- jQuery is required -->
        <script src=".2.1/jquery.min.js"></script>

        <!-- UIkit JS -->
        <script src=".0.0-beta.25/js/uikit.min.js"></script>
        <script src=".0.0-beta.25/js/uikit-icons.min.js"></script>
        <!-- Fonts -->
        <link href=":100,600" rel="stylesheet" type="text/css">

    </head>
    <body>
        <div id="app" style="background:#666;height: 100vh;">

            <router-view></router-view>
        </div>

         <script src="/js/app.js"></script>
    </body>
</html>

But when I go to example/lavarel/public/ again, I got 404 error:

GET example/js/app.js 404 (Not Found)

if I change to <script src="/laravel/public/js/app.js"></script>, I will get another 404 error:

GET example/laravel/public/laravel/public/js/app.js 404 (Not Found)

How can I resolve this?

I installed Laravel 5.4 in my server /public_html/laravel/ folder. When I access example./lavarel/public/, it works.

I copied all my piled files in my local public/ folder into the example./lavarel/public/. Then I add the <script src="/js/app.js"></script> into my wele.blade.php:

<!doctype html>
<html lang="{{ config('app.locale') }}">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="csrf-token" content="{{ csrf_token() }}">
        <title>Laravel</title>
        <!-- UIkit CSS -->
        <link rel="stylesheet" href="https://cdnjs.cloudflare./ajax/libs/uikit/3.0.0-beta.25/css/uikit.min.css" />
        <!-- <link rel="stylesheet" href="assets/sass/uikit.css" /> -->

        <!-- jQuery is required -->
        <script src="https://cdnjs.cloudflare./ajax/libs/jquery/3.2.1/jquery.min.js"></script>

        <!-- UIkit JS -->
        <script src="https://cdnjs.cloudflare./ajax/libs/uikit/3.0.0-beta.25/js/uikit.min.js"></script>
        <script src="https://cdnjs.cloudflare./ajax/libs/uikit/3.0.0-beta.25/js/uikit-icons.min.js"></script>
        <!-- Fonts -->
        <link href="https://fonts.googleapis./css?family=Raleway:100,600" rel="stylesheet" type="text/css">

    </head>
    <body>
        <div id="app" style="background:#666;height: 100vh;">

            <router-view></router-view>
        </div>

         <script src="/js/app.js"></script>
    </body>
</html>

But when I go to example./lavarel/public/ again, I got 404 error:

GET example./js/app.js 404 (Not Found)

if I change to <script src="/laravel/public/js/app.js"></script>, I will get another 404 error:

GET example./laravel/public/laravel/public/js/app.js 404 (Not Found)

How can I resolve this?

Share edited Jul 28, 2017 at 8:39 Himanshu Bhandari 1,8892 gold badges25 silver badges38 bronze badges asked Jul 28, 2017 at 7:25 sooonsooon 4,8988 gold badges72 silver badges125 bronze badges 8
  • Is laravel allowed to read the files? If not this could also result in an 404 error. – Tobias F. Commented Jul 28, 2017 at 7:38
  • 1 When you tried with /laravel/public/...., are 100% sure you had the initial /? I don't see how you would have gotten that error message if you did. – M. Eriksson Commented Jul 28, 2017 at 7:41
  • check your console, from what url it is trying to load the js – RAUSHAN KUMAR Commented Jul 28, 2017 at 7:49
  • @RAUSHANKUMAR The OP has included that in the question already. – M. Eriksson Commented Jul 28, 2017 at 8:00
  • I would remend that you create a new vhost and have Laravel's public folder as the document root for the web server. – M. Eriksson Commented Jul 28, 2017 at 8:11
 |  Show 3 more ments

2 Answers 2

Reset to default 7

I have same issue. It simply solved by running:
npm run dev

Step1: run the below mand in your project.
npm install

Step2: after successful npm modules installations run the below mand.
npm run dev

For better understanding visit laravel doc: https://laravel./docs/5.8/frontend

本文标签: javascriptLaraveljsappjs not found 404 errorStack Overflow