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
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:
- How do i create virtual subdomain using htaccess?Best solution by Stack Overflow
- How can I turn off automatic Yahoo mail login?Best solution by answers.yahoo.com
- How can I find an automatic form filler on Yahoo?Best solution by Yahoo! Answers
- How do i repair full automatic washing machine?Best solution by Yahoo! Answers
- How do I cancel the automatic renewal on xbox live?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.