Advertisement:

Author Topic: How to add www prefix  (Read 886 times)

amar

  • Newbie
  • *
  • Posts: 5
How to add www prefix
« on: March 18, 2017, 05:27:37 pm »
Could you please tell me how to add www prefix to my URL in osclass?

marius-ciclistu

  • issues
  • Hero Member
  • *
  • Posts: 1652
  • "BE GRATEFUL TO THOSE THAT SUPPORTED YOU"
Re: How to add www prefix
« Reply #1 on: June 01, 2017, 12:02:22 am »
Hi.
I think you could do this by editing your .htaccess file (on your host).

You can find the code by searching online 'redirect non-www to www'.

For example for www to non-www:
Code: [Select]

RewriteEngine On

# www to non-www links.
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

davisdole

  • Newbie
  • *
  • Posts: 1
Re: How to add www prefix
« Reply #2 on: August 10, 2017, 04:18:37 am »
check your config.php file and make sure your webpath is defined with a www. If you don't have a defined webpath, add the following code below and change the website domain to your domain.

define('WEB_PATH', 'http://www.website.com/');