The Problem:

Been spinning my wheels and reading up on this one for awhile and looking for some help now. I'm looking to take a group of non-friendly URLs (there are actually more "groups" but this should me for an example):

  1. domainname.com/?section=zebras
  2. domainname.com/?section=monkeys&id=555

and turn them into friendly URLs, as well as do a 301 on the old versions, so that any old bookmarks (and search engines) will still resolve them. The new format I'm looking for would be:

  1. domainname.com/zebras/
  2. domainname.com/monkeys/555

I'm fully intending to write separate RewriteCond/RewriteRule combinations for each of those scenarios, so I don't necessarily need a super-rule that catches all my scenarios. Oh and this is all in .htaccess.

My Progress:

I was originally getting into a redirect loop because I was just doing two RewriteRules back to back - one for the friendly URL and one for the 301 redirect. Came across my favorite way (so far) around the redirect loop which works (for my scenario #1 at least):

RewriteCond %{ENV:REDIRECT_STATUS} !200
RewriteCond %{QUERY_STRING} ^section=zebras$ [NC]
RewriteRule ^.*$ http://www.domainname.com/zebras/? [R=301,NC,L]

RewriteRule ^zebras/$ /index\.php?section=zebras [NC,L]

However, I'd like to have something that works for more than just "zebras" (for instance, I'd like it to work for "lions" as well), so I'm trying to make that more generic. What I am trying now looks like this:

RewriteCond %{ENV:REDIRECT_STATUS} !200
RewriteCond %{QUERY_STRING} ^section=([a-z]+)$ [NC]
RewriteRule ^section=([a-z]+)$ http://www.domainname.com/$1/? [R=301,NC,L]

RewriteRule ^([a-z]+)/$ /index\.php?section=$1 [NC,L]

However, this doesn't work. I think I have something "not quite right", I just can't tell what it is - there's something I'm missing or formatting incorrectly somewhere. Sorry in advance for the lengthy description, just wanted to be clear.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Do this:

RewriteEngine on
RewriteBase /

RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule ^ - [L]

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_URI} !(\.\w+|/)$ 
RewriteRule (.*) /$1/ [R,L]

RewriteCond %{QUERY_STRING} ^section=([a-z]+)$ [NC]
RewriteRule ^ /%1/? [R=301,NC,L]

RewriteRule ^([a-z]+)/$ /index\.php?section=$1 [NC,L]

RewriteCond %{QUERY_STRING} ^section=([a-z]+)&id=(\d+)$ [NC]
RewriteRule ^ /%1/%2/? [R=302,NC,L]

RewriteRule ^([a-z]+)/(\d+)/$ /index\.php?section=$1&id=$2 [NC,L]

Description

Prevents looping:

RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule ^ - [L]

Prevents trailing slash problem:

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_URI} !(\.\w+|/)$ 
RewriteRule (.*) /$1/ [R,L]

Handles rewrites with only section=([a-z]+) in them:

RewriteCond %{QUERY_STRING} ^section=([a-z]+)$ [NC]
RewriteRule ^ /%1/? [R=302,NC,L]

RewriteRule ^([a-z]+)/$ /index\.php?section=$1 [NC,L]

Handles rewrites with only section=([a-z]+)&id=(\d+) in them:

RewriteCond %{QUERY_STRING} ^section=([a-z]+)&id=(\d+)$ [NC]
RewriteRule ^ /%1/%2/? [R=302,NC,L]

RewriteRule ^([a-z]+)/(\d+)/$ /index\.php?section=$1&id=$2 [NC,L]

mistake in your rules:

section=([a-z]+) is not available in the URI part. So, RewriteRule ^section=([a-z]+)$ never matched.

link|improve this answer
this is excellent, will give it a try later tonight and see how it works. Any reason you used 302 redirects instead of 301? I assume I'd be safe to replace those with 301s since I'd be dealing with permanent redirections and not temporary? Also thanks for pointing out the flaw in my original code - makes sense now that I see it the right way. – vladimir Feb 21 at 13:42
@vladimir make that 301. Its a typo. – ThinkingMonkey Feb 21 at 13:43
Tried this out this morning - flawless, thanks for the help. – vladimir Feb 22 at 10:21
@vladimir welcome. – ThinkingMonkey Feb 22 at 10:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.