• I’ve searched for documentation on my specific issue but couldn’t find any but please redirect me if there is.

    I want customers to be redirected to http://www.fleet.nic-smith.com/entry when coming to http://www.fleet.nic-smith.com from another domain. But once they are in the site, whenever they access http://www.fleet.nic-smith.com, say by clicking the logo, it doesn’t redirect them to the entry page just the normal home page.

    Another way I guess would be to use cookies so they only see it once every 15 days or so but how?

    Which way is easier/ how do I achieve this.

    Thanks and sorry if any formatting here is incorrect- I am new here.

    Nic

Viewing 1 replies (of 1 total)
  • Thread Starter saffi

    (@saffi)

    I’ve hanged my .htaccess file to the following and its redirecting from fleet.nic-smith.com to fleet.nic-smith.com/entry just fine but it’s doing it all the time instead of just when accessed from an external domain.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    RewriteCond %{HTTP_HOST} ^fleet.nic-smith\.com$
    RewriteRule (.*) http://www.fleet.nic-smith.com/$1 [R=301,L]
    RewriteRule ^$ /entry [L,R=301]
    </IfModule>
    
    # END WordPress
Viewing 1 replies (of 1 total)
  • The topic ‘Redirect to "Entry" page when coming from external domain’ is closed to new replies.