Can you help with my htaccess mod_rewrite clean URL formula?
-
I run a directory with about 100 pages, and im using an htaccess file so that users can type for example... mysite.com/courier opposed to; mysite.com/COURIER.php?subtype=COURIER heres how I am going about it; RewriteRule ^courier\.*$ COURIER\.php?subtype=COURIER [NC,L,N] RewriteRule ^valeting\.*$ VALETING\.php?subtype=VALETING [NC,L,N] RewriteRule ^sales\.*$ SALES\.php?subtype=SALES [NC,L,N] instead of writing a new RewriteRule for every single page, is there a RewriteRule I can use that would cover each of my pages?
-
Answer:
Off the top of my head, something like : RewriteRule ^(.*)$ $1php?subtype=$1 [NC,L,N] so whatever is matched in the (.*) is replaced into the $1 (1 as its the first match, $2 ,$3 etc. if there are multiple matches) Be careful though and try it out a few times. Why duplicate code (valeting.php, courier.php, sales.php) as well as passing the type? One php file with the passed type would be easier to maintain. you should put some validation into the code.php to check the subtype is ok. If I were you I'd do something like : RewriteRule ^(.*)$ code.php?subtype=$1 [NC,L,N]
Ed at Yahoo! Answers Visit the source
Related Q & A:
- Can smbd help me to convert some values from real to virtual?Best solution by Stack Overflow
- Can you help us plan our trip to India?Best solution by Yahoo! Answers
- I need help with some horse questions, can you help me.Best solution by Yahoo! Answers
- Hi.... can you help me? you can give me the address e-mail of robert pattinson?if you have him/it you send me?Best solution by Yahoo! Answers
- How can I get my vinyl convertible top clean?Best solution by autogeek.net
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.