.htaccess rename

Hello,

I want that people who go to this url:


http://www.mydomain.com/dummy/url



to go to


http://www.mydomain.com/nomoredummy/url



How can I do that with a .htaccess file?




RewriteCond %{REQUEST_URI} ^dummy$

RewriteRule ^(.*)$ nomoredummy/$1 [R=301,L]

You can use one line like:


RewriteRule ^dummy/(.*)$ nodummy/$1 [R=301,L]