Announcement

Collapse
No announcement yet.

redirects with site studio

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • redirects with site studio

    Haven't used this yet, but a customer wants an easy way to do re-directs to another web page. Can you get to the HTML & upload it easily using SiteStudio?

    Thanks!
    Diana

  • #2
    I've not used sitestudio but I assume as long as the generated pages are in the main directory where the site is located that you can edit it from the filemanager.

    Adam

    Comment


    • #3
      Absolutely!

      You can do just about anything you like with html in Site Studio - trust me, I've tried to tweak it till it hurts hahaha.

      Just Login, create New Page - scroll down and choose 'YOUR HTML' as the type of page.

      Just add the 'redirect' script in the html text box.

      Easy peasy.

      Cheers
      WebGirl

      Comment


      • #4
        Is the redirection to another html file or a totally different domain? If redirecting to a different domain I would suggest using a a permanent 301 redirect to the new domain by adding what I have below to a .htaccess file that would be placed at root for the domain that is being redirected.

        Code:
        redirectMatch 301 ^(.*)$ http://www.TheDomainYourRedirecting.com
        redirectMatch permanent ^(.*)$ http://www.TheDomainYourRedirecting.com

        Comment

        Working...
        X