• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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