通过htaccess重定向特定页面

时间:2010-07-16 03:33:32

标签: .htaccess codeigniter

我有一个CodeIgniter网站,问题是我有:

RewriteCond %{HTTP_HOST} ^example\.com
RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L]

但这导致人们从example.com转到www.example.com/index.php /

我希望他们只是去www.example.com

有什么想法吗?此外,如果他们在example.com/page1,他们应该访问www.example.com/page1

由于

1 个答案:

答案 0 :(得分:1)

Apache在处理该规则之前将/重写为/index.php/。尝试将其移动到文件的顶部。