views:

36

answers:

2
+1  A: 

Maybe you're too much generic with your rules and you got conflicts.

Try to map this urls

http://creatii.artcrew.ro/creatii/dee-dee/creatie1 http://creatii.artcrew.ro/categorii/poetry/satire

Starting from those sample you can easily map your urls with no conflict on rules

RewriteEngine On
RewriteRule ^creaati/([^/]*)/([^/]*)$ /creatii.php?creatie_thumb=$2&user=$1 [L]
RewriteRule ^categorii/([^/]*)/([^/]*)$ /categorii.php?numecat=$1&numesubcat=$2 [L]

Do some tries :D

Napolux
yes that would work, but i created the subdomani especialy for some creations if i use : http://creatii.artcrew.ro/creatii/ that subdomain would have no sense isen`t there another way to at least show the first url just like this : http://creatii.artcrew.ro/dee-dee/creatie19 ? and the rest with maping
DanTdr
You can create folders for every var... But of course it's weird...
Napolux
+1  A: 
Jeremy Stein
meh yeah this is right but can`t i do this for only one category? just one without any maping? and the rest with maping?
DanTdr
Yes, you could have one type of mapping not require any special token on the URL. You'd need to make sure it was the first RewriteRule, and it would break if there was a possible value that matched the tokens you use (e.g. a username of "cat").
Jeremy Stein