I\'m trying to redirect this URL www.domain.com/~username to www.domain.com/~username/public but remove the /public from the URL.
www.domain.com/~username
www.domain.com/~username/public
/public
You can try this code:
RewriteEngine on RewriteBase /~username/ RewriteCond %{THE_REQUEST} ^GET\ /public/ [NC] RewriteRule ^public/(.*)$ $1 [L,R=301,NE] RewriteRule ^((?!public/).*)$ public/$1 [L,NC]