views:

30

answers:

2

I'm lousy at regex and need a .htaccess rewrite rule for a following link "/eventi/123/title-of-the-event" to "/dogadjanja/123/title-of-the-event".

Thanx.

+1  A: 

No rewrite needed:

Alias /eventi /dogadjanja

should do the trick.

Alternatively, try

RewriteRule ^/eventi/(.*)$ /dogadjanja/$1 [QSA]
Pekka
I now get an error 500, something is misconfigured
dfilkovi
@dfilkovi maybe mod_alias is not active. In that case, try the update
Pekka
A: 

Try this rule:

RewriteRule ^eventi(/.*)?$ dogadjanja$1
Gumbo