谁能告诉我为什么我的重定向助手不能按我期望的方式工作?我正在尝试重定向到我的主控制器的 index 方法,但是www.mysite.com/index/provider1/
当它应该路由到www.mysite.com/provider1
. 这对任何人都有意义吗?我将配置中的索引页面设置为空白,尽管我认为这不是问题。有人对如何解决此问题有建议吗?提前致谢!
控制器:
if($provider == '') {
redirect('/index/provider1/', 'location');
}
.htaccess:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^(index\.php|files|images|js|css|robots\.txt|favicon\.ico)
RewriteCond %{HTTP_HOST} ^mysite.com/ttnf/
RewriteRule (.*) http://www.mysite.com/ttnf/$1 [R=301,L]
RewriteBase /ttnf/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
php_flag display_errors On