使用代码图标重定向重定向()
2022-08-30 09:04:22
谁能告诉我为什么我的重定向助手没有按照我期望的方式工作?我正在尝试重定向到主控制器的索引方法,但是当它应该路由到.这对任何人都有意义吗?我在配置中的索引页设置为空白,尽管我不认为这是问题所在。有没有人对如何解决此问题有建议?提前致谢!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