相同的URL但使用htaccess的不同网页

时间:2016-09-14 04:32:08

标签: php .htaccess

我有2页,第一页是login.php,第二页是index.php。

我当前的功能是当用户尚未登录时,会出现index.php includes login.php,如果用户已登录index.php将显示该页面。

以下是它的工作原理:

index.php

if(!$user->loggedin()) {
   include 'login.php';
} else {
   'show the page of index.php';
}

我之所以这样做是因为,我希望我的网址能够像www.mysite.com/这样的2页。

问题是,index.php加载的速度稍慢,因为它包含另一个页面。我怎样才能解决这个问题 ?有没有其他选择吗? 2页1个网址?

0 个答案:

没有答案