• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • ⚠️ Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • ✅ Confirm that the server meets the System Requirements
    • 🔥 Check for any available Hotfix - your issue could be already reported/fixed
    • 📚 Read documentation - It will be required to Debug and understand Errors for a faster support response

Running with multidomain

thaoly

banned
Dear Mr. @Rodolfo ,

I'd like to run my website with multi domain how can i do that?

Or, today I need to change my domain, how must I do to keep old picture's link which user had shared before.

Example:

- I have domain1.com and domain2.com.
- Current domain is domain1.com ==> user share link with their friend is: domain1.com/images/abc (domain1.com/images/xxxx.jpg)
- Now, how must I do to change to domain2.com and whom share link (domain1.com/images/abc) when access, It will redirect to domain2.com/images/abc (domain2.com/images/xxxx.jpg)

Thanks.
 
You can achieve that using server side redirections, basically you add a rule in domain1.com redirecting all the traffic to domain2.com. Depending on how you configure those domains you will need to do the following:

A. If domain1.com and domain2.com are NOT in the same server, use this .htaccess in domain1.com:
Code:
RewriteEngine on
RewriteRule ^(.*)$ http://domain2\.com/$1 [R=301,L]


B. If domain1.com and domain2.com are in the same server, use this .htaccess:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^domain1\.com$ [NC]
RewriteRule ^(.*)$ http://domain2.com/$1 [R=301,L]
 
You can achieve that using server side redirections, basically you add a rule in domain1.com redirecting all the traffic to domain2.com. Depending on how you configure those domains you will need to do the following:

A. If domain1.com and domain2.com are NOT in the same server, use this .htaccess in domain1.com:
Code:
RewriteEngine on
RewriteRule ^(.*)$ http://domain2\.com/$1 [R=301,L]


B. If domain1.com and domain2.com are in the same server, use this .htaccess:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^domain1\.com$ [NC]
RewriteRule ^(.*)$ http://domain2.com/$1 [R=301,L]
Okie tks sir.
 
Back
Top