PHP路由 - 错误包括css / js文件

时间:2017-08-03 16:16:01

标签: php html css .htaccess

我正在学习在php中进行路由。我能够在没有任何错误的情况下路由页面,但我仍然坚持使用cssjs文件。我用于教程和示例的媒体是在 laracast 视频上。我也在Windows上使用xampp作为apache服务器。

我想做自己的练习,下面的图片是我做的文件结构,

在我的.htaccess文件上,我有:

RewriteEngine On
RewriteBase /season-temp
RewriteRule ^.*$ index.php [END]

在我的观看文件夹中,我有包含headerfooter的所有观看页面文件,以包含cssjs

的header.php

<!DOCTYPE html>
<html lang="en">

<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="description" content="">
    <meta name="author" content="">

    <title>Logo Nav - Start Bootstrap Template</title>

    <!-- Bootstrap Core CSS -->
    <link href="/css/bootstrap.min.css" rel="stylesheet">

    <!-- Custom CSS -->
    <link href="/css/logo-nav.css" rel="stylesheet">

</head>
<body>

<?php require('navigations.php'); ?>

footer.php

<!-- jQuery -->
<script src="/js/jquery.js"></script>

<!-- Bootstrap Core JavaScript -->
<script src="/js/bootstrap.min.js"></script>

</body>

</html>

从上面的代码中,它会出错:

GET http://localhost/css/bootstrap.min.css 
GET http://localhost/css/logo-nav.css 
GET http://localhost/js/jquery.js 
GET http://localhost/js/bootstrap.min.js 

我尝试在头部插入<base href="/">,并在每个src / href上建立链接,例如'season-temp/<folder_name>/<file_name>',例如; 'season-temp/css/bootstrap.min.css'但仍然无法获取css和js文件。

我想如何包含这些文件?

  

更新 - 输出错误

首先,对以下解决方案的错误更新道歉。 css和js确实有效但链接断了。如果我基于@Triby回答撤消.htaccess文件,链接工作正常,但css和js不是。以下是我的navigations.phproutes.php

的页面

navigations.php

<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
   <ul class="nav navbar-nav">
      <li>
         <a href="/season-temp/about">About</a>
      </li>
      <li>
         <a href="/season-temp/services">Services</a>
      </li>
      <li>
         <a href="/season-temp/contact">Contact</a>
      </li>
   </ul>
</div>

routes.php文件

<?php

$router->get('season-temp','controllers/index.php');

$router->get('season-temp/about','controllers/about.php');

$router->get('season-temp/services','controllers/services.php');

$router->get('season-temp/contact','controllers/contact.php');

如果我更新了@ceejayoz为css和js文件提到的链接,我收到了错误:

<br />
<b>Fatal error</b>:  Uncaught exception 'Exception' with message 
'No route defined for this URI.' 
in C:\xampp\htdocs\season-temp\core\router.php:30
Stack trace:
#0 C:\xampp\htdocs\season-temp\index.php(9): 
Router-&gt;direct('season-temp/js/...', 'GET')
#1 {main}
thrown in <b>C:\xampp\htdocs\season-temp\core\router.php</b> 
on line <b>30</b><br />

2 个答案:

答案 0 :(得分:2)

您正在将所有内容重定向到index.php,尝试仅重定向不存在的文件或目录:

RewriteEngine On
RewriteBase /season-temp
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [L]

L是为了避免在规则匹配时处理以下任何规则

答案 1 :(得分:0)

  

我正在使用http://localhost/season-temp/

进行访问

这就是问题所在。

您的文件都是这样引用的:

<script src="/js/jquery.js"></script>

但你应该使用:

<script src="/season-temp/js/jquery.js"></script>