在我的项目中,我需要查询字符串功能和段数组功能。因为某些返回URL是查询字符串形式。 我做了以下更改,但没有用。
我的config.php
看起来像
$config['base_url'] = '';
$config['uri_protocol'] = 'PATH_INFO';
$config['enable_query_strings'] = TRUE;
我的.htaccess
文件是
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^$ /test/index.php [L]
RewriteCond $1 !^(index\.php|resource|smsprinter|media|Scripts|system|public|upload|flash|css|js|pop-up|images|user_guide|scripts|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ /test/index.php/$1 [L]
有没有办法只在任何特定页面中设置查询字符串格式?或者有什么办法可以解决这个问题吗?
答案 0 :(得分:0)
我找到了解决方案。 htaccess文件中没有任何变形 但是配置文件有一些变化。 配置文件应该是 $ config ['base_url'] =''; $ config ['uri_protocol'] ='REQUEST_URI'; $ config ['enable_query_strings'] = FALSE;