我想知道是否可以在Codeigniter 3中用htaccess覆盖route.php规则。
例如,为了将动态子域指向相同的控制器并将子域作为参数传递,routes.php不能做到这一点,而在htaccess中确实很简单。
另一个示例是使用URL段屏蔽查询字符串。 Routes.php不允许使用查询字符串,但是htaccess再次适合于此。
因此,作为一个普遍的问题,是否可以在CodeIgniter中对所有路由使用htaccess而不是使用route.php?
答案 0 :(得分:0)
我认为您可以将htaccess用于codeigniter中的静态路由。但是对于动态路由应用程序库,例如http://localhost/myproject/user/1 您必须使用routes.php。
答案 1 :(得分:0)
Codeigniter路由配置用于路由模块/控制器/方法/变量模式。
我认为,域/子域将从此配置中消失,但是您可以基于$ _SERVER变量使用dinamic base_url,然后从特定控制器获取字符串(子域)。
通过我的配置,在CI 2.x上
$config['base_url'] = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' ? 'https' : 'http';
$config['base_url'] .= '://'. $_SERVER['HTTP_HOST'];
$config['base_url'] .= isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] != '80' && $_SERVER['SERVER_PORT'] != '443' ? ( ':'.$_SERVER['SERVER_PORT'] ) : '';
$config['base_url'] .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
然后做这样的事情...
$server = $_SERVER['HTTP_HOST'];
$domain = preg_replace('#^www\.(.+\.)#i', '$1', $server);
$domain = $this->extract_domain($domain);
$subdomain = $this->extract_subdomains($server);
function extract_domain($domain)
{
if(preg_match("/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.[a-z\.]{2,6})$/i", $domain, $matches))
{
return $matches['domain'];
} else {
return $domain;
}
}
function extract_subdomains($domain)
{
$subdomains = $domain;
$domain = $this->extract_domain($subdomains);
$subdomains = rtrim(strstr($subdomains, $domain, true), '.');
return $subdomains;
}