• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • 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