将我的index.php从root配置为打开文件夹和子文件夹php中的页面

时间:2017-03-30 18:06:04

标签: php html5 .htaccess

我正在尝试从文档根目录配置我的index.php以打开其他文件。我不需要在.htaccess上这样做 我的文件结构如下:

def login():

 if request.method == "POST":
    timestamp = str(int(time.time()))
    cookie = timestamp+'user'
    cookie = base64.b64encode(cookie.encode('utf-8')).decode('utf-8')
    resp = make_response()
    resp = resp.set_cookie("LoginCookie",cookie)
    return resp

我想要的是配置所以我可以从index.php root中选择文件请求到application / php / folders。 在我的index.php文件根目录中,我有这个:

/application
    /database
       /dbmanager.php
    /php
       index.php
       login.php
/models
/resources
    /css
       /master.css
    /js
       /general.js
    /img
       /logo.png
index.php

此外,我不想在链接上显示 application / php / login.php ,但仅 / login 我的HTML链接是:

<?php


if (($_SERVER['REQUEST_URI']) == '/login') {
    require('application/php/login.php');
    exit();
} else {
    require('application/php/index.php');
    exit();
}

?>

$ domain是我本地主机的完整路径域,所以我不总是写一切。在这种情况下:&#34; http://localhost:81/ {project_name}&#34; / login 将选择文件夹中的文件。

更新

<a href="<?php echo $domain; ?>login" >Login</a>

0 个答案:

没有答案