在codeigniter中创建问题站点将转移到新域

时间:2011-12-13 16:07:24

标签: codeigniter

嘿,我有一个正在运行的网站,其URL位于

之下
  

http://www.buraksolutions.com/homelife/site/residential.html

问题是当我将这个网站转移到其他域时,有index.php吗?进入导致很多问题的URL,它不会加载大部分数据

  

http://nextcrawl.net/HomeLife/site/index.php?/welcome_controller.html

这是我的.htaccess文件

RewriteEngine on

#RewriteBase /kunden/homepages/8/d232327588/htdocs/consulnet/genetech/mockups/nextcrawl/homelife/site
#RewriteCond $1 !^(index\.php|resources|robots\.txt)
#RewriteCond %{REQUEST_FILENAME} !-f
# RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule ^(.*)$ /index.php/$1 [L] 

# AddType x-mapp-php5 .php
#Options +FollowSymLinks

RewriteEngine On
RewriteBase /homelife/site
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt|css)

RewriteRule ^(.*)$ index.php?/$1 [L]

1 个答案:

答案 0 :(得分:1)

查看.htaccess文件中定义的URL重写。它的配置可能与新域名不匹配,或者甚至可能无法在新域的服务器上启用mod_rewrite。如果不查看您的设置,我不能告诉您更多信息,但这里有一些关于使用CodeIgniter重写URL的精彩资源: