1

由于我的托管公司的政策,我在 CakePHP 中使用了漂亮的 url(没有 Apache mod 重写)。我的主页在:

http://stthomasedu.org/index.php/home

如何重定向流量

'http://stthomasedu.org/' 到 'http://stthomasedu.org/index.php/home' ?

我试图编辑 index.php

header("Location:http://stthomasedu.org/index.php/home");

但它不起作用,每次我必须手动输入 URL “http://stthomasedu.org/index.php/home”

有任何想法吗?

已解决:在 C-PANEL 中,我可以选择将我的所有流量重定向到(http://stthomasedu.org)任何位置(现在我将其设置为http://stthomasedu.org/index.php/home

4

2 回答 2

1

由于您使用的是 Apache,因此您可以将这些行添加到.htaccess

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_URI} ^$
RewriteCond %{HTTP_HOST} ^stthomasedu.org$
RewriteRule ^$ http://stthomasedu.org/index.php/home [L,R=301]
于 2012-05-09T12:41:47.823 回答
0

你记得在你的 header() 调用之后退出吗?

header('Location: /index.php/home');
exit;
于 2012-05-09T12:21:06.757 回答