• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Quick Question

R

rafcarter

Guest
Can anyone tell me how I set my main directory to start always?

What I mean is this.

Currently when someone types www.xxx.com I want it to start in www.xxx.com/CMS

I have Linux Fedora Core 2. Apache 2

Can someone tell me how to do this quickly?
 
You could put the following into your vhost.conf file in the domain's conf folder:

/home/httpd/vhosts/domain.com/conf/vhost.conf

Put the following:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteMap lowercase int:tolower
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteCond %{REQUEST_URI} !^/CMS/
RewriteCond %{REQUEST_URI} !error_docs
RewriteRule (.*) /CMS/$1
</IfModule>

Make sure you change 'domain.com' to the real domain name. If vhost.conf does not already exist, then just create a new one. (for future newbie readers)
 
Back
Top