function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ashish Kumar YadavAshish Kumar Yadav 

how to move website in community

Hello Folks,

Please help me How can we move the below website to the community site. find below screenshot for your reference.

User-added imageUser-added imageUser-added image
Hara SahooHara Sahoo
Did you try iframes.
Consider salesforce canvas as well, could have some issues
https://salesforce.stackexchange.com/questions/203768/is-it-possible-to-use-a-canvas-app-with-the-community-guest-user

Alternative:
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global">
    <aura:attribute name="iframeUrl" type="String" default="https://www.news.com.au/"/>
    <aura:attribute name="width" type="String" />
    <aura:attribute name="height" type="String" />
    <aura:attribute name="scrolling" type="String" />
    <aura:attribute name="frameBorder" type="String" />
    <aura:attribute name="style" type="String" />
    <aura:attribute name="sandbox" type="String" />
    
    <iframe src="{!v.iframeUrl}"
            width="1000"
            height="5000"
            style="{!v.style}"
            frameBorder="{!v.frameBorder}"
            sandbox="{!v.sandbox}"
            scrolling="{!v.scrolling}"/>
    
</aura:component>