I have a url, lets say its blog.art.ca/Customer/AAAABBBB/index.html and I want to hide Customer and AAAABBBB. Now AAAABBBB can be any 8 character alphanumeric code.
Options +FollowSymLinks -Multiviews -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^Customer/(.*)$ /$1 [L,R]
</IfModule>
I've tried numerous things, however, I either get ERR_TOO_MANY_REDIRECTS or it just causes the server to crash. Any suggestions would be much appreciated!