How can I replace index.php with? view = example in the address bar?

0

What I want to do is that when index.php is detected in the address bar it is changed to ?view=hola .

    
asked by Andrés 02.01.2018 в 23:51
source

1 answer

0

You do not have to change it, the servers search by default for the files index , when you go to do a redirect, the url should be like this:

You pass this URL:

www.tupagina.com/ejemplo/index.php?view=ejemplo

To this URL

www.tupagina.com/ejemplo/?view=ejemplo
    
answered by 02.01.2018 в 23:54