开发者

codeigniter query string and segment together

开发者 https://www.devze.com 2023-04-11 23:49 出处:网络
In my project I need the query string feature and segment array feature. Because some return url is in the query s开发者_运维百科tring form.

In my project I need the query string feature and segment array feature. Because some return url is in the query s开发者_运维百科tring form. I have made the following changes but it didn't work.

My config.php looks like

$config['base_url'] = '';
$config['uri_protocol'] = 'PATH_INFO';
$config['enable_query_strings'] = TRUE;

And my .htaccess file is

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]

Is there any way to set the query string format in any particular page only ? Or is there any way to overcome this issue?


I have find out the solution. There is no chage in the htaccess file But there is some change in the config file. The config file should be $config['base_url'] = ''; $config['uri_protocol'] = 'REQUEST_URI'; $config['enable_query_strings'] = FALSE;

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号