When I do a search via GET through a form the url looks like this:
test.txt?
I would like it to look like this:
test.blogspot.blogspot.blogspot.com
Does anyone know how to do this? Reference: link
Form Code:
<form class="form-inline" action="busca.php" method="get" >
<div class="form-group" style="width:100%">
<label for="numero" class="control-label">Busca</label><br>
<input class="form-control" id="termo" name="termo" type="text" value="" style="width:100%">
</div>
<div class="form-group" style="width:100%">
<br>
<button type="submit" class="btn btn-primary" style="width:100%!important; padding:6px 12px;"><i class="fa fa-search" aria-hidden="true"></i> Pesquisar</button>
</div><!-- /form-group -->
</form>