Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Redirection with .htaccess

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #38262
    schart
    Participant

    So basically I want everything on my domain (schart.net) to be redirected to alpha.schart.net or schart.net/alpha . For example, if I would enter in “schart.net/something” in the urlbar, it would redirect to “alpha.schart.net/something” or “schart.net/alpha/something”.

    Here are a few codes I’ve been using for similar things:

    RedirectMatch 301 ^/alpha/(.*)$ http://alpha.schart.net/$1 #Redirects /alpha to alpha

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^www.schart.net$ [NC]
    RewriteRule ^(.*)$ http://schart.net/$1 [R=301,L] #removes www.

    What would you use?

    – Thank’s :)!

Viewing 1 post (of 1 total)
  • The forum ‘Other’ is closed to new topics and replies.