Forum Moderators: phranque
example.com/blog/.html would be valid) and the - should be something else as you don't have hyphen at the end of the part you want to capture. The Redirect-to-Rewrite Two-Step
Problem: Your dynamically generated pages have long, ugly, hard-to-memorize URLs, probably containing query strings. You want them to have short pretty URLs.
The Solution comes in two parts.
Part 1. Redirect
When a user asks for the long ugly URL, redirect to the short pretty URL. Basic pattern:
RewriteCond %{THE_REQUEST} \?
RewriteCond %{QUERY_STRING} queryname=([a-z]+)
RewriteRule longcomplicatedURL http://www.example.com/blahblah/%1? [R=301,L]
The %1 is captured from the original query string, and the final ? means that you now get rid of the query string. In real life it will usually be a little more complicated, but that's the basic process.
Example:
user asks forwww.example.com/directory/morestuff/index.php?model=volvo
They get bounced over towww.example.com/cars/volvo
Part 2. Rewrite
You get an incoming request for a short pretty URL-- either from a new arrival or from someone who was redirected in Part 1. The server can't tell the difference.
RewriteRule blahblah/([a-z]+)$ longcomplicatedURL?queryname=$1 [L]
This time around, you're capturing part of the request and changing it into a query string.
Example:
user asks forwww.example.com/cars/volvo
They may think that's what they're getting-- it's what the browser's address bar says-- but behind the scenes the page content is really coming fromwww.example.com/directory/morestuff/index.php?model=$1
Now you see why Part 1 had to look at THE_REQUEST. It's for insurance. If something happens later on, your long complicated URL might pass through mod_rewrite again. If it does, you need to be sure it doesn't get re-redirected. Otherwise there will be an infinite loop.
Now wait a minute! Does this mean that if someone starts out asking for "longcomplicatedURL", they go through this whole rigamarole and then they end up right back where they started?
Yup. But they don't know it. They only know what the browser's address bar tells them. Even robots-- yes, even google-- can't tell that they're being rewritten.
The Redirect part of the package-- Part 1-- is not technically necessary. The Rewrite-- Part 2-- will function without it. But redirecting everyone to the same URL means that everyone is now on the same page ... and it avoids nasty things like Duplicate Content.
But you're not done yet.
Part 0.
Before you do anything with Part 1 and Part 2, go over your current site carefully. Make sure that your own links point only to the short pretty URL. Requests for the long complicated URL should come only from outside-- from people with outdated bookmarks, or old links from other sites. Your own site will use only the pretty URLs.
blogarticle/([^/]*)\.php$
/blogarticle/ in the URL? I think not. www.example.com/b235-insert-witty-title-here RewriteRule ^b([0-9]+)-(.*) /blogarticle.php?id=$1&name=$2 [L] [edited by: g1smd at 5:56 pm (utc) on Jun 26, 2012]
with the system that I am using I cannot control what the URL is.
href="/foobar/54324-quux-wibble" href="/index.php?cat=foobar&item=54234&prod=quux-wibble" href="/index.php?cat=foobar&item=54234&prod=quux-wibble&extraparam=something&another=somestuff" href="/foobar/54324-quux-wibble?extraparam=something&another=somestuff"
real-page-name.php?regularparm1=abc®ularparm2=xyz&noredirect=true?version=external
pretty-page-name.php?noredirect=true?version=external
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /redirect\.php\?one=1&two=2&?([A-Za-z0-9=&]*)\ HTTP/
RewriteRule ^redirect\.php$ /redirected.php?%1 [R=301,L]
RewriteRule ^redirected\.php$ /redirect.php?one=1&two=2%1 [L,QSA]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /redirect\.php\?one=1&two=2&?([A-Za-z0-9=&]*)\ HTTP/
RewriteRule ^redirect\.php$ /redirected.php?%1 [R=301,L]
RewriteRule ^redirected\.php$ /redirect.php?one=1&two=2%1 [L,QSA]