• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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