.htaccess - How to rewrite url with double directory names using htaccess? -


i'm having hard time rewriting following url:

http://example-url.com/example-url.com/anythinggoeshere

to:

http://example-url.com/anythinggoeshere

i tried this:

redirectmatch 301 example-url.com/example-url.com(.*) example-url.com$1  

but it's not doing anything...

your appreciated!

i solved issue doing following:

redirect 301 /example-url.com http://example-url.com 

Comments