URL rewrite from www.domain.com/sudirectory to http://domain.com/subdirectory
- by chrizzbee
I need a solution for the following problem:
I use a CMS and want the backend only be available at http://domain.com/backend and not at http://www.domain.com/backend.
How do I have to change my .htaccess file to achieve this? I already have a rewrite rule from HTTP (non-www) to www.
Here's what I currently have in my .htaccess file:
##
# Uncomment the following lines to add "www." to the domain:
#
RewriteCond %{HTTP_HOST} ^shaba-baden\.ch$ [NC]
RewriteRule (.*) http://www.shaba-baden.ch/$1 [R=301,L]
#
# Uncomment the following lines to remove "www." from the domain:
#
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule (.*) http://example.com/$1 [R=301,L]
#
# Make sure to replace "example.com" with your domain name.
##
So, the first bit is the redirect from HTTP to www. It works on the domain part of the URL. As explained, I need a rewrite rule from the backend login at http://www.shaba-baden.ch/contao to http://shaba-baden.ch/contao