How to Rewrite URL in htaccess with php?

How do I create an automatic htaccess URL redirect?

  • Hi I am new to htaccess (real basic knowledge) and I am trying to create a dynamic htaccess url redirect. So right now I have this (and it works): RewriteRule ^([-A-Za-z0-9-_]+)/?$ index.php?filter[]=$1  [L,QSA] RewriteRule ^/?([-A-Za-z0-9-_]+)/([-A-Za-z0-9-_]+)/?$ index.php?filter[]=$1&filter[]=$2  [L,QSA] RewriteRule ^/?([-A-Za-z0-9-_]+)/([-A-Za-z0-9-_]+)/([-A-Za-z0-9-_]+)/?$ index.php?filter[]=$1&filter[]=$2&filter[]=$3  [L,QSA] But is there a possibilty to make this automatic so I dont have to create a RewriteRule foreach slash? So if the url was: http://www.example.com/filterone/filtertwo/filterthree/filterfour/filterfive/filtersix/filterseven/ etc.. It would send: index.php?filter[]=filterone&filter[]=filtertwo&filter[]=filterthree etc.. Any help/advice? Thanks in advance. Damy

  • Answer:

    You may find that using a PHP Router will provide an easier solution in this situation. I have tried the method you are using before, and it ended up being quite a headache, particularly because URLs without slashes will not work as expected.

Dan Crocker at Quora Visit the source

Was this solution helpful to you?

Other answers

How about passing the whole path in one parameter and have the php split it up into folders?

Tony McCreath

Thank you both for your answers. I coudn't figure out the PHP Router, but the answere from Tony worked out for me. Thank you both again!

Damy Kilian

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.