Search results

  1. Z

    redirect only index page?

    the example in that video was kind of sneaky :D i use encoded js redirects to make outbound links look like normal pages and hopefully get them indexed. it's worked out for me. it was really just an experiment in trying to reduce the number of outbound links to see if it made any overall...
  2. Z

    redirect only index page?

    true if you 301, but you could use a javascript redirect.
  3. Z

    Need Help - Htaccess - rewrite www to http

    exactly. your code won't do anything nasty if you dont put in the www but also wont do anything useful if you do put in the www.
  4. Z

    Need Help - Htaccess - rewrite www to http

    i just tried this and it didnt work - did nothing at all in fact... (domain name removed obviously).... RewriteEngine On RewriteCond %{HTTP_HOST} ^xxxxxxxx.com RewriteRule (.*) http://xxxxxxxx.com/$1 [R=301,L] that's basically your example isn't it?
  5. Z

    Need Help - Htaccess - rewrite www to http

    this is the correct solution. your first example meant if the URI is not exactly www.mydomain.com then redirect... so will create a loop your second example means if the URI starts with mydomain.com then redirect... so i don't see how it will work for www.mydomain.com the example by...
  6. Z

    looking for a BHW girl friend ! any one here ?

    funny you should ask that... ;) yes i was, but with her nothing *naughty* else i know for a fact she wouldn't have wanted to meet. oddly enough i promote various cams sponsors these days across my network. but yep - it's a bloody odd way of meeting a girl i have to admit...
  7. Z

    I have .INFO - can I move it to .COM?

    if you use something like my .htaccess example then everything will get transferred to the .com, including link juice and as GreyWolf said the .info will fall off the SERPs.
  8. Z

    looking for a BHW girl friend ! any one here ?

    ah.... makes sense then :D
  9. Z

    Mousepad not working..Please advice

    ah.... touchpad - makes more sense. i was wondering how a mouse pad could ever fail :confused: if it's a power related issue when charging etc then not sure if a driver would help. though must be the driver i guess or some winblowz config somehow, but afaik there's no seeing related to...
  10. Z

    If you could give someone a good swift kick......

    being sensible yep - me too. not being so sensible then i agree that chuck norris would be a good bet if only you could get away with it :p as for stephen hawking.... harsh... harsh!
  11. Z

    PHP question

    not really a php question but.... since google can only index one version of your page anyway it'll just be the one based on the referrer (and google isn't going to be sending one) so you need to build up other pages. something like doing a 301 redirect to index.php?kw=the+referrer+string...
  12. Z

    looking for a BHW girl friend ! any one here ?

    it took 3 months to realise it was a bot lol :p i suppose there are odder places to meet a girl but i can't think of too many. the one place that does spring to mind is where i met the girl i'm currently living with... cams.com. at least she's definately not a bot mind you. but if she was then...
  13. Z

    I have .INFO - can I move it to .COM?

    what he said 100% :D the old .htaccess file is your friend in this case... Options +FollowSymLinks RewriteEngine On RewriteCond %{HTTP_HOST} ^fubar.info [NC] RewriteRule ^(.*)$ http://fubar.com/$1 [L,R=301] and google loves this kind of stuff and will reindex anything from your .info...
  14. Z

    Where do you usually register you domains?

    i have a few on godaddy and domainsite as they were pre-owned but i always register on namecheap. they also have a cool xml interface you can use to bulk register domains f ou need to :) g00gle for "namecheap coupons" and the top hit should be a site with the latest coupon codes on.
  15. Z

    set up blog as subdomain or a folder. Pros and cons.

    if you use a sub you can then create your own backlinks compared with inlinks for a folder. i use both methods - depends on the site, what else i have to promote it, etc.
  16. Z

    Track keyword from google -> landingpage -> affiliate

    yep - exactly that. that's also how you'd syntax hilite the page etc as some sites do. you'd need different regexes for each search engine - but this will work for google: if (preg_match('!google\..*q=(?P<kw>\S+?)&!', $_SERVER['HTTP_REFERER'], $cap)) { $keywords = $cap['kw']; // if u...
  17. Z

    use epassporte virtual visa with paypal?

    i have an epassporte atm card but i also link my epassporte virtual visa to my paypal account which works fine. but i've heard plenty of people say that it doesn't work - so i have no real clue why it works for me (and gf btw).
  18. Z

    DataFeed Files Needed

    much easier to work with xml feeds - and there's stacks of them around.
  19. Z

    D'you cloak your affiliate links when spamming walls?

    i just use a simple php 301 as mentioned above. mostly for my own tracking then as it seems to generally work better than firing off an http request onclick.
  20. Z

    Plz Help, WP coding help i guess

    nothing? no reply at all? maybe i shouldn't have bothered :p
Back
Top