CakePHP漂亮的URL重定向

时间:2012-05-09 12:17:38

标签: php cakephp pretty-urls

由于我的托管公司的政策,我在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");

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

有什么想法吗?

解决:在C-Panel中我有一个选项可以将我的所有交通重新(http://stthomasedu.org)任何位置(现在我将其设置为http://stthomasedu.org/index.php/home

2 个答案:

答案 0 :(得分:1)

由于您使用的是Apache,因此可以在.htaccess

中添加these lines
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_URI} ^$
RewriteCond %{HTTP_HOST} ^stthomasedu.org$
RewriteRule ^$ http://stthomasedu.org/index.php/home [L,R=301]

答案 1 :(得分:0)

您是否记得在标题()致电后退出?

header('Location: /index.php/home');
exit;