request.querystring - CodeIgniter QueryStrings -



request.querystring - CodeIgniter QueryStrings -

first of must point out not programmer, have no want programmer, , application speaking of not written me. average end user trying create things work need them work. beingness said,

two simple questions:

1.) why urls not work codeigniter powered apps ?

http://somesite.com/search?q=something

2.) how forcefulness work ?

i have read atleast 2 dozen articles on issue , nil has worked. have enabled querystrings in config file, have alter url_protocol path_info, have set forms post , nil works.

help...

ok, seek changing $config['uri_protocol'] = "path info"; $config['uri_protocol'] = "request_uri";

if still not work, check .htaccess file rule removes index.php url; of form:

rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule ^(.*)$ index.php/?$1 [l]

if rule exists, alter lastly line `rewriterule ^(.*)$ index.php/$1 [l]

notice, ? removed lastly line. check after doing above steps. hope works.

codeigniter request.querystring

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -