Activity Stream
48,167 MEMBERS
63712 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 9 of 9
  1.     
    #1
    Banned
    Website's:
    bruv.org

    Default Need some HTML help

    Hi guys,

    i need some help with the :
    <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html">

    Redirect code
    i need it not to show the referer i.e. lets say
    domaina.com has the above code
    and redirects to domainb.com
    i dont want in domainb.com's logs that
    the traffic is coming from domaina.com
    so how to alter the above code so that no refer
    is being shown ???
    MagicTallGuy Reviewed by MagicTallGuy on . Need some HTML help Hi guys, i need some help with the : <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html"> Redirect code i need it not to show the referer i.e. lets say domaina.com has the above code and redirects to domainb.com i dont want in domainb.com's logs that Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    litewarez.net litewarez.com triniwarez.com
    that traffic cannot be logged with a html refresh unlesy domana.com places the referer in the meta tag like so

    DomainA:
    Code: 
    <meta                   HTTP-EQUIV="REFRESH" content="0;                   url=http://www.yourdomain.com/index.html?referer=domaina.com">
    DomainB:
    PHP Code: 
    //You can log it in php for e.g
    (isset($_GET['referer']) ? log_referer() : null);

    function 
    log_referer(){
    //do logging code here

    or my looking into your statistics program and filtering by the http GET "ref"

    but domain a has to add that to there refresh meta tag
    Join Litewarez.net today and become apart of the community.
    Unique | Clean | Advanced (All with you in mind)
    Downloads | Webmasters


    Notifications,Forum,Chat,Community all at Litewarez Webmasters


  4.     
    #3
    Member
    You can do that with php, modify headers, or use htaccess.

    Edit:
    litewarez, I think he means he doesn't want his site to be shown as referer?.. meh, might misunderstood.

  5.     
    #4
    Banned
    Website's:
    bruv.org
    - let me explain one more time

    site1 (has a crappy domain and used to be an active site)
    site2 (the new domain)

    i want to redirect the traffic from site1 to site2 but i dont want
    the traffic from site1 to show as traffic from site1 thats why i dont
    want to show referer. but i cant find the proper code for it
    (im newb to php hardly know anything about it Its all about HTML )

  6.     
    #5
    Member
    Website's:
    litewarez.net litewarez.com triniwarez.com
    in that case you want to create a htacces file and add this

    Code: 
    Options +FollowSymLinks 
    RewriteEngine on 
    RewriteRule (.*) http://www.domainb.com/$1 [R=301,L]
    this will redirect all traffic form domain a to domainb and tell google etc that the domain has moved to domainb
    Join Litewarez.net today and become apart of the community.
    Unique | Clean | Advanced (All with you in mind)
    Downloads | Webmasters


    Notifications,Forum,Chat,Community all at Litewarez Webmasters


  7.     
    #6
    Banned
    Website's:
    bruv.org
    is there not any simple html code for this - im not that experienced in this stuff

  8.     
    #7
    Banned
    Website's:
    bruv.org
    Quote Originally Posted by litewarez View Post
    in that case you want to create a htacces file and add this

    Code: 
    Options +FollowSymLinks 
    RewriteEngine on 
    RewriteRule (.*) http://www.domainb.com/$1 [R=301,L]
    this will redirect all traffic form domain a to domainb and tell google etc that the domain has moved to domainb

    if i put the htaccess file in the public_html folder all domains which are situated there would not leave no referer if they where redirected to
    the new domain ?? ( using <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html"> )

  9.     
    #8
    Member
    Website's:
    litewarez.net litewarez.com triniwarez.com
    i believe that method should redirect with the previous referrer..

    so fir instance

    Google --> domaina --> domainb (Referrer of "Google")

    not 100% tho
    Join Litewarez.net today and become apart of the community.
    Unique | Clean | Advanced (All with you in mind)
    Downloads | Webmasters


    Notifications,Forum,Chat,Community all at Litewarez Webmasters


  10.     
    #9
    Member
    Website's:
    litewarez.net litewarez.com triniwarez.com
    or you can do with javascript

    <script type="text/javascript">
    document.location = 'http://www.domainb.com';
    </script>

    if that shows a referer then the only other way is to do a new window in javascript

    <script type="text/javascript">
    window.open(.....)
    </script>
    Join Litewarez.net today and become apart of the community.
    Unique | Clean | Advanced (All with you in mind)
    Downloads | Webmasters


    Notifications,Forum,Chat,Community all at Litewarez Webmasters


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. html and css help
    By tractor3231 in forum Web Development Area
    Replies: 7
    Last Post: 5th Sep 2011, 08:42 AM
  2. PSD to HTML
    By ddlshack in forum Graphics Area
    Replies: 1
    Last Post: 26th May 2011, 11:07 AM
  3. PSD to PHP/HTML?
    By .:Jamie:. in forum Web Development Area
    Replies: 8
    Last Post: 1st Mar 2011, 08:17 AM
  4. Replies: 8
    Last Post: 21st Jul 2010, 06:13 PM
  5. HTML help
    By n4pst3r in forum Server Management
    Replies: 5
    Last Post: 30th Mar 2010, 09:38 AM

Tags for this Thread

BE SOCIAL