Just moved to shared hosting on GoDaddy and Im trying to get my .htaccess rules working.

Heres what I have:

ErrorDocument 404 /error.php
Options FollowSymLinks

RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^www\.mydomain\.org$
RewriteRule ^(.*)$ http://mydomain.org/$1 [R=301,L]

RewriteRule ^view/(\w+)$ viewitem.php?itemid=$1 [R=301,L]
RewriteRule ^category/(\w+)$ viewcategory.php?tag=$1 [R=301,L]

RewriteRule ^faq$ faq.php
RewriteRule ^about$ about.php
RewriteRule ^contact$ contact.php
RewriteRule ^submit$ submit.php
RewriteRule ^contactmsg$ handler-contact.php

All the pages @ the root of the domain seem to be working i.e mydomain.org/faq, mydomain.org/about are working.

But whenever I try mydomain.org/category/somecategory, I get a 404. How can I fix my .htaccess to obey these rules that are more than 1 level deep?

Thanks,

EDIT: I have fixed the rules by changing them to the following:

RewriteRule ^view/(.*)$ viewitem.php?itemid=$1
RewriteRule ^category/(.*)$ viewcategory.php?tag=$1

Can anyone confirm/deny that this is the proper way to fix this?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The new way you're doing it (with (.*)) is correct.

link|improve this answer
Ok cool. Thats just a wildcard for everything Im assuming? What did (\w+) technically do before? – barfoon Jun 3 '10 at 18:30
.* means match anything. Specifically, . means "any character", and the * means 0 or more of those. \win perl-compatible regexes (which Apache should use there) means alphanumeric or "_". So, maybe your categories have some other character in them? Spaces? – Bill Weiss Jun 3 '10 at 18:34
Oh ok thanks for the clarification Bill. Categories dont have spaces, dont know why they wouldnt be caught there. – barfoon Jun 3 '10 at 19:37
What does a category look like? Can you show the logs from one? – Bill Weiss Jun 3 '10 at 20:18
A category is just a string with no spaces - e.g. "friends", "family", "misc", "health". Any ideas? – barfoon Jun 4 '10 at 14:50
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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