0
I am using the following htaccess code:
<IfModule mod_rewrite.c>
RewriteEngine on
# Include in the next line all folders to exclude
RewriteCond %{REQUEST_URI} !(app/view/*|web/*) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>
I wish the url of a search to be accepted by it:
http://localhost/previdencia/admin/pesquisa?search=ouvidoria
How do I make it work?