views:

22

answers:

1
# Tags
RewriteRule   ^tags/(\d+)/$ /tags/view/index.cfm\?tagURL=$1 [L]

the tag can be anything. What's wrong?

+2  A: 

If you only like to allow digits as tags, you can use this:

RewriteRule   ^tags/([0-9]+)/$ /tags/view/index.cfm\?tagURL=$1 [L]

Otherwiese, your solution

RewriteRule   ^tags/(.*)/$ /tags/view/index.cfm\?tagURL=$1 [L]

is perfectly fine.

JochenJung