php中的路径问题

时间:2012-02-27 21:22:29

标签: php path

我的文件index.php包含admin文件夹中的index.php文件

<?php require 'admin/index.php'; ?>
管理文件夹中的

index.php文件基本上是导入2个css文件的登录表单

<DOCTYPE HTML>
<html>
    <head>
        <title>Simple Login Form</title>
        <meta charset="UTF-8" />
        <meta name="Designer" content="PremiumPixels.com">
        <meta name="Author" content="$hekh@r d-Ziner, CSSJUNTION.com">

        <-- site layout -->
        <link rel="stylesheet" type="text/css" href="css/reset.css" />
        <link rel="stylesheet" type="text/css" href="css/structure.css" />

    </head>

    <body>

        <form id="myForm" class="boxlogin" action="index.php" method="POST">
            <fieldset class="boxBody">
                <label>Email <span style="color:red;"><?php if(isset($errorMsg)) echo $errorMsg;?></span></label>
                <input name="email" type="text" tabindex="1" placeholder="root" required>
                <label><a href="" class="rLink" tabindex="5">Forget your password?</a>Password</label>
                <input name="password" type="password" tabindex="2" required>
            </fieldset>
            <div class="footer">
                <label><input type="checkbox" tabindex="3">Keep me logged in</label>
                <input type="submit" class="btnLogin" value="Login" tabindex="4"/>
            </div>
        </form>

    </body>
</html>

当我运行index.php文件时,脚本包含admin / index.php文件。 但是由于包含了admin / index.php文件,因此链接到了css 在不同路径的文件中。

我可以将.css文件路径更改为

<link rel="stylesheet" type="text/css" href="admin/css/reset.css" />
<link rel="stylesheet" type="text/css" href="admin/css/structure.css" />

这样可以解决问题,但如果我想从另一条路径调用/admin/index.php脚本该怎么办。

我们假设“根文件夹”不在服务器上的根文件夹中,例如/var/www/php/loginscript/

这种情况的最佳解决方案是什么? 感谢。

2 个答案:

答案 0 :(得分:0)

我会将每个静态内容创建为绝对URL(例如:/css/reset.css)并在HTML中设置标记。

答案 1 :(得分:0)

这样做:

<link rel="stylesheet" type="text/css" href="/css/reset.css" />
<link rel="stylesheet" type="text/css" href="/css/structure.css" />

请注意/

中添加的hrefs