LifeType 中文開發論壇

支援 => 安裝與設定 => 主題作者是: Nightmare 於 八月 20, 2006, 02:56:47 下午



主題: 把summary.php 改成默认首页的办法【不用修改.htaccess】
作者: Nightmare八月 20, 2006, 02:56:47 下午
 :-P
 
比较简单,不过还算有效,呵呵。
其实就是在$_GET['blogId']为空的时候,自动跳转至summary.php   

打开index.php

寻找
程式碼:
include_once( PLOG_CLASS_PATH."class/data/timestamp.class.php" );
也即19行(我的版本)

然后第二十行处新起一行
然后加入以下代码:
程式碼:

    if ($_GET['blogId']=='')
    {
    ?>
<script>
window.location = "http://www.yourdomain.com/summary.php";
</script>
    <?php 
    

 


有任何问题请回复。
 
 :-$


主題: Re: 把summary.php 改成默认首页的办法【不用修改.htaccess】
作者: markwu九月 09, 2006, 12:08:25 上午
更簡單的方式應該是:

程式碼:
if ($_GET['blogId']=='') {
    header("location: http://www.yourdomain.com/summary.php");
    die();
}

連 javascript 的輸出都不需要,但是他只能用在 rawrequest。比較好的方式還是修改 .htaccess。

Mark


主題: Re: 把summary.php 改成默认首页的办法【不用修改.htaccess】
作者: wangyu1314九月 12, 2006, 03:53:35 下午
直接改httpd.conf中的首页配置也是可以的。在index.php前面添加summary.php保存就行了,更简单。


主題: Re: 把summary.php 改成默认首页的办法【不用修改.htaccess】
作者: growlanser十一月 12, 2006, 08:28:17 下午
写一个index.htm文件,加入语句
<meta http-equiv="refresh" content="0.1; url=http://域名/summary.php">
访问域名的时候会跳到summary.php,因为一般index.htm比index.php优先执行

似乎这个最简单..也不改到其他文件...