我正在使用Godaddy linux主机,并且已经在上面部署了codeigniter源代码。在localhost上运行完全正常。我的默认控制器名称为“欢迎使用”。
当我尝试输入后通过按登录按钮登录时 用户名和密码,而无需在其中写入默认控制器名称 网址,然后显示“不允许您请求的操作”。在某些位置,效果很好。这是我的写法 网址'https://www.example.com'
当我在url中写入默认控制器名称时,然后输入用户名和密码,然后按登录按钮。它工作正常。这是我的写法 https://www.example.com/Welcome
当我从中删除“ www”时 配置文件中的base_url,在某些位置可以正常工作,但不能 在其他一些地方工作。 这是我的配置文件
$config['base_url'] = 'https://www.example.com/';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
$config['url_suffix'] = '';
$config['language'] = 'english';
$config['charset'] = 'UTF-8';
$config['enable_hooks'] = FALSE;
$config['subclass_prefix'] = 'MY_';
$config['composer_autoload'] = FALSE;
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-@';
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd';
$config['allow_get_array'] = TRUE;
$config['log_threshold'] = 0;
$config['log_path'] = '';
$config['log_file_extension'] = '';
$config['log_file_permissions'] = 0644;
$config['log_date_format'] = 'Y-m-d H:i:s';
$config['error_views_path'] = '';
$config['cache_path'] = '';
$config['cache_query_string'] = FALSE;
$config['encryption_key'] = '';
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
$config['cookie_prefix'] = '';
$config['cookie_domain'] = '';
$config['cookie_path'] = '/';
$config['cookie_secure'] = FALSE;
$config['cookie_httponly'] = FALSE;
$config['standardize_newlines'] = FALSE;
$config['global_xss_filtering'] = FALSE;
$config['csrf_protection'] = True;
$config['csrf_token_name'] = 'csrf_snt_token';
$config['csrf_cookie_name'] = 'csrf_cookie_snt';
$config['csrf_expire'] = 7200;
$config['csrf_regenerate'] = TRUE;
$config['csrf_exclude_uris'] = array();
$config['compress_output'] = FALSE;
$config['time_reference'] = 'local';
$config['rewrite_short_tags'] = FALSE;
$config['proxy_ips'] = '';
我不知道哪里做错了。我希望它甚至在URL中没有写入默认控制器名称的情况下也能正常工作。任何帮助将不胜感激:)