• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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