Generate a search url?

2

I need to get the url to search for a specific term on a website built using CodeIgniter. But when I type the term, the url changes only to: nomedosite.com.br/busca

I tried to add ?q=arquitetura but it did not work.

    
asked by anonymous 02.07.2014 / 14:05

2 answers

3

Did you mean: Pass parameters via URL? If so, check your configuration file at application/config/config.php if query strings option is enabled.

$config['enable_query_strings'] = FALSE;

If you are false , you will not be able to do this.

For more information, follow the link:

link

    
31.07.2014 / 22:45
0

Codeigniter is designed to work with friendly url

www.site.com/curso/buscar/arquitetura

I suggest you view this topic link

    
16.08.2014 / 13:39