The code below rewrites all URLs in the /profiles/ directory on our site from example.com/profiles/name/ to example.com/name/, but we\'d also like to r
example.com/profiles/name/
example.com/name/
You need to disable directory slash
Try :
DirectorySlash Off RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /profiles/$1 [NC,L]