473,385 Members | 1,372 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Are personalized URLs a danger to my Search Engine inclusion?

Greetings, all,

Several days after adding personalized URLs to my "amazing" collection
of "God Loves (yourname)" mazes, it occurred to me that if someone were
to create an offcolor term, then copy the URL to his own web page, that
I might be penalized because my page would include that text on the
resulting page.

For example, let's say that "GOD LOVES JOKES" has negative
connotations. Someone could create:

http://mazes.com/asp-maze/godloves.asp?firstname=jokes

and visiting the page reveals a headline "God Loves Jokes".

Could I hurt my search engine rankings by giving people the ability to
create a personalized URL like this? Of course, what's the likelihood
that someone would abuse such a link?

The next related question would be: Is there a metatag or the
equivalent that I could put on a page that is reached with a
personalized URL telling the search engines to ignore this page in
their searches? I could always add logic to add that code to any page
source code that was reached with a personalized URL from another page.

Which brings up yet another question? Can I, in my ASP program, tell
what page contained the link that the person just visited?

John

P.S. I've also added an ENLARGE button, a SHRINK button, and a
PRINTABLE button that merely hides the information above the maze so
that it will be the topmost/leftmost item on the page when you print.

Oct 2 '05 #1
4 1868
"John" wrote:
For example, let's say that "GOD LOVES JOKES" has negative
connotations. Someone could create:

http://mazes.com/asp-maze/godloves.asp?firstname=jokes

and visiting the page reveals a headline "God Loves Jokes".


You can easily stop this by fixing your asp script to respond to POST data
only. If you detect a GET request, just send out a default name or a welcome
page. This will also solve the search engine indexing problem (their robots
don't send POST data, so they'll never see the results). You should read up
on META robots tags anyway, since you'll probably find them useful:

<http://www.google.com/search?q=meta+robots>

--
phil [dot] ronan @ virgin [dot] net
http://vzone.virgin.net/phil.ronan/
Oct 2 '05 #2
John <Go******************@gmail.com> wrote:
Several days after adding personalized URLs to my "amazing" collection
of "God Loves (yourname)" mazes, it occurred to me that if someone were
to create an offcolor term, then copy the URL to his own web page, that
I might be penalized because my page would include that text on the
resulting page.

For example, let's say that "GOD LOVES JOKES" has negative
connotations. Someone could create:

http://mazes.com/asp-maze/godloves.asp?firstname=jokes

and visiting the page reveals a headline "God Loves Jokes".
Well, God does love jokes.
Could I hurt my search engine rankings by giving people the ability to
create a personalized URL like this? Of course, what's the likelihood
that someone would abuse such a link?
You never know when someone might find it and make some sort of a joke out
of it. When that happens it could spread like wildfire.
Which brings up yet another question? Can I, in my ASP program, tell
what page contained the link that the person just visited?


Maybe I am misunderstanding your question, but can't you just examine the
HTTP-Referer value?

mmiguel
--
Hit The Road! Photos from 36 countries on 5 continents: http://travel.u.nu
Latest photos: Macau; Queens Day in Amsterdam; Grand Canyon; Amman, Jordan
Oct 3 '05 #3
Philip wrote:
You can easily stop this by fixing your asp script to respond to POST data
only. If you detect a GET request, just send out a default name or a welcome
page. This will also solve the search engine indexing problem (their robots
don't send POST data, so they'll never see the results).
I already use POST, but it occurred to me that an average person might
want to save their maze in their favorite places, and giving them a
personalized URL is one way to do it.

But you've reminded me that I have a third option ... if the person
puts a name into the URL, give them their maze but use default
headlines, so that I don't have to worry about search spiders seeing
the actual text, so I don't have to worry about x-rated language, etc.
You should read up on META robots tags anyway,
since you'll probably find them useful:
<http://www.google.com/search?q=meta+robots>
Thanks, I'll do that.

Miguel wrote:
http://mazes.com/asp-maze/godloves.asp?firstname=jokes
and visiting the page reveals a headline "God Loves Jokes".
Well, God does love jokes.

Yes, he does, that's why I used jokes as my example.
Could I hurt my search engine rankings by giving people the ability to
create a personalized URL like this? Of course, what's the likelihood
that someone would abuse such a link? You never know when someone might find it and make some sort of a joke
out of it. When that happens it could spread like wildfire.
I think I'll change my headline so that it's a default headline when
using GET data, but is personalized with POST data.
Which brings up yet another question? Can I, in my ASP program,
tell what page contained the link that the person just visited?

Maybe I am misunderstanding your question, but can't you just examine
the HTTP-Referer value?


You're probably understanding me perfectly. I don't know how to do
that. That's why I asked my question. I'm an utter beginner at using
ASP inside my HTML.

John

Oct 3 '05 #4
I wanted to thank you for your hint, Miguel, HTTP-Referer is exactly
what I was looking for. I found the information on how to use it
several places on the internet, then searched for information to let me
add unique referrers to a text file. Here's what I ended up with:

<%
'Create Our ServerVariables and Store them to a variable
site = Request.ServerVariables("HTTP_REFERER")
if site>""then
site = site & "," & thispage
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject ")
set f=fs.OpenTextFile(Server.MapPath("testread.txt"),1 ,true)
do while f.AtEndOfStream<>true and site>""
testitem=f.ReadLine: if testitem=site then site=""
loop: f.Close
if site>"" then
set f=fs.OpenTextFile(Server.MapPath("testread.txt"),8 ,true)
f.WriteLine(site): f.Close: site=""
set f=Nothing: set fs=Nothing
end if
end if
%>

I'm sure I could make this routine above even better, but it works, so
I'm satisfied. For example, I could have used EXIT DO after site=""
instead of using (and site>"") in the line above it, but I've always
hesitated to use exit do, because on occasion, they have done funny
things in other programs.

Having found the statements required to let me create this file, I went
on to set up a similar file to keep track of first names requested, and
while making those changes, also changed it so that if someone uses the
http://www.mazes.com/asp-maze/godlov...firstname=john style of
personalized URL, their name does not show up in the text or headings
of the page. So, once in awhile, i can glance at the names file to see
what kinds of interesting names have been a-maze-d.

John

Oct 4 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: phpkid | last post by:
Howdy I've been given conflicting answers about search engines picking up urls like: http://mysite.com/index.php?var1=1&var2=2&var3=3 Do search engines pick up these urls? I've been considering...
4
by: moondaddy | last post by:
I've made the decision to use search engine friendly URLs in my site which means translating stripping all parameters our of the URL and converting it to a hierarchical URL like this: Change:...
0
by: Alexandre Soares | last post by:
Hi, I've found some code to create search engine safe urls. A filter added to the Response object parse all urls in the output html and an HttpModule takes the incoming url, parse it back to...
1
by: Michael | last post by:
Hello, Does anyone know how to create a personalized url? For example, I would like my site http://www.mysite.com to offer it's users the ablity to create personalized urls like...
10
by: jflash | last post by:
Hello all, I feel dumb having to ask this question in the first place, but I just can not figure it out. I am wanting to set my site up using dynamic urls (I'm assuming that's what they're...
2
by: dbojan | last post by:
From this search engine: https://siteexplorer.search.yahoo.com/mysites when I make all subdomains search just by typing a domain url in a search box like blogspot.com -and after I verify my...
3
by: WebCM | last post by:
How to apply nice URL-s into CMS? 1. Should we use nice urls for every page? 2. Do we need to put a FULL path into <a href="">? 3. What is faster and better? a) 10 rules in .htaccess...
2
by: anbaxter | last post by:
I have a small challenge and you'll have to excuse me because I haven’t touched JS for some time and have gotten a bit rusty. I have an intranet site at work that has roughly 500,000 htm pages...
8
by: Bruno Rafael Moreira de Barros | last post by:
I have this framework I'm building in PHP, and it has Search Engine Friendly URLs, with site.com/controller/page/args... And on my View files, I have <?=$this->baseURL;?to print the base URL on the...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.