Welcome! Log In Create A New Profile

Advanced

Re: putting stupid search engine urls back

Martin Schut
August 30, 2009 08:39AM
> Well... first off, any major change to software like that is going to
> change the url patterns and break your links, whether you're using
> friendly looking links or showthread kind of links.

Actually I'll look at SEO-friendly URL's as an advantage here. Whether you
have to rewrite 1 rule to automagically use the new url pattern or half a
million it's all about making it easy for your users/customers. You don't
want to make it difficult for them because /you/ changed software. If they
go directly to you buy-now page, you want to get there directly and not
present a search page saying, 'we changed software, please search for the
buy-now page, which has been relocated due to change in software (and we
couldn't bother to send you there automatically as it costs us to much and
you will your spend money with us anyway)'.

That is, of course:
- if you're selling products/services which are also easily bought
somewhere else. It's all about the cost/advantage ratio.
- if you linked from elsewhere. If everybody enters your site using the
home-page, it's not a problem either.

Regards,

Martin

>
> More to your question, it looks like a rewrite or redirect is your
> answer to that question ;)
>
> A regex like
>
> $url =~ s#/[^/].*?([0-9]).*\.html$#/showthread.php?t=$1#i;
>
> would do the trick in perl.
>
>
> On Sat, Aug 29, 2009 at 4:52 PM, AMP Admin<admin@ampprod.com> wrote:
>> Hi again Gabriel,
>>
>> Thank you for your reply.
>>
>> I think SEF URL's are debatable.  The more research I do the more I find
>> them unnecessary.  It also makes it difficult for growth.  What if you
>> change your cms, forum or whatever and the dynamic content is generated
>> differently?  All of your "static lookalike" links are no longer valid.
>>  I
>> also believe this to be true with major revisions of current cms,
>> forums and
>> other.  If they do a complete code rewrite as many of them claim with
>> major
>> revisions then that might also affect urls too.  Eventually you have
>> more
>> lines of rewrites and garbage in your config than anything else which
>> is not
>> the intended use.  It may not strain the server but every little bit of
>> helps and if someone thinks they can just let that go then       where
>> does
>> it stop?
>>
>> Anyway, here's an old article that's worth a read in regards to the
>> great
>> sef debate. http://www.emediawire.com/releases/2005/4/emw232456.htm
>>
>> Finally, that brings me back to my original question...
>> Finally, that brings me to my original question...
>> How can I turn:
>> /anyone-doing-late-ridei-t19640.html
>>
>> into:
>> /showthread.php?t=19640
>>
>>
>> ====== CONFIDENTIALITY NOTICE ======
>> NOTICE: This e-mail message and all attachments transmitted with it may
>> contain legally privileged and confidential information intended solely
>> for
>> the use of the addressee. If the reader of this message is not the
>> intended
>> recipient, you are hereby notified that any reading, dissemination,
>> distribution, copying, or other use of this message or its attachments
>> is
>> strictly prohibited. If you have received this message in error, please
>> notify the sender immediately and delete this message from your system.
>> Thank you.
>>
>>
>> -----Original Message-----
>> From: owner-nginx@sysoev.ru [mailto:owner-nginx@sysoev.ru] On Behalf Of
>> Gabriel Ramuglia
>> Sent: Saturday, August 29, 2009 4:10 PM
>> To: nginx@sysoev.ru
>> Subject: Re: putting stupid search engine urls back
>>
>> You really shouldn't have to use redirects, I would think. A rewrite
>> (mod rewrite in apache, I think nginx supports similar), will allow
>> people to directly access the friendly urls while your application
>> internally receives a request for the ?something=something urls. If
>> rewrites are using up so much cpu that you'd rather not have search
>> engine traffic than have to take the cpu hit to rewrite urls....
>> something is seriously wrong.
>>
>> On Sat, Aug 29, 2009 at 8:27 AM, AMP Admin<admin@ampprod.com> wrote:
>>> It's just that it seems to put a strain on the server to redirect
>>> everything.  Maybe I'm doing it wrong.  Also, when people submit
>>> content
>> to
>>> bookmarks sometimes they get a redirect error.  It says something like
>> 'this
>>> page redirects to' and then it won't bookmark.
>>>
>>> If I can make a nice clean sef that doesn't cause problems like that
>>> then
>> I
>>> would love to use it.
>>>
>>> Also, if we move to a new platform a year or two down the line then
>>> those
>>> links woud need another redirect if the new system uses a different
>>> url.
>>> Does that make sense?
>>>
>>>
>>> -----Original Message-----
>>> From: owner-nginx@sysoev.ru [mailto:owner-nginx@sysoev.ru] On Behalf Of
>>> Gabriel Ramuglia
>>> Sent: Saturday, August 29, 2009 12:15 AM
>>> To: nginx@sysoev.ru
>>> Subject: Re: putting stupid search engine urls back
>>>
>>> If you do that, you're wasting SEO potential. If nothing else, the
>>> search engines take into account textual content in your urls when
>>> considering the topicality of the page. Without those keywords in the
>>> url, you'll have a harder time ranking for the relevant topics of your
>>> site.
>>>
>>> On Fri, Aug 28, 2009 at 9:43 PM, Ilan Berkner<iberkner@gmail.com>
>>> wrote:
>>>> Perhaps not the appropriate forum... but why / where did you hear
>>>> that it
>>>> was "stupid" to do / use SEF?
>>>>
>>>> Thanks
>>>>
>>>> On Sat, Aug 29, 2009 at 12:36 AM, AMP Admin <admin@ampprod.com> wrote:
>>>>>
>>>>> A few years we went along with the buzz about writing search engine
>>>>> friendly urls.  Well now I think that’s stupid and believe the site
>>>>> will
>>> get
>>>>> crawled regardless.
>>>>>
>>>>>
>>>>>
>>>>> Anyway, there’s bots and ppl still looking for the sef urls so I
>>>>> need to
>>>>> change them back.
>>>>>
>>>>>
>>>>>
>>>>> How can I make:
>>>>>
>>>>> /anyone-doing-late-ridei-t19640.html
>>>>>
>>>>>
>>>>>
>>>>> into:
>>>>>
>>>>> /showthread.php?t=19640
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>
>>>
>>>
>>
>>
>>
>
>
Subject Author Posted

putting stupid search engine urls back

AMP Admin August 29, 2009 12:36AM

Re: putting stupid search engine urls back

iberkner August 29, 2009 12:43AM

Re: putting stupid search engine urls back

Gabriel Ramuglia August 29, 2009 01:14AM

RE: putting stupid search engine urls back

AMP Admin August 29, 2009 11:27AM

Re: putting stupid search engine urls back

Gabriel Ramuglia August 29, 2009 05:09PM

RE: putting stupid search engine urls back

AMP Admin August 29, 2009 07:52PM

Re: putting stupid search engine urls back

Gabriel Ramuglia August 29, 2009 09:11PM

RE: putting stupid search engine urls back

AMP Admin August 29, 2009 10:12PM

RE: putting stupid search engine urls back

AMP Admin August 29, 2009 10:58PM

Re: putting stupid search engine urls back

Gabriel Ramuglia August 30, 2009 12:10AM

RE: putting stupid search engine urls back

AMP Admin August 30, 2009 10:21AM

Re: putting stupid search engine urls back

Marcus Clyne August 30, 2009 01:58AM

RE: putting stupid search engine urls back

AMP Admin August 30, 2009 10:25AM

Re: putting stupid search engine urls back

Marcus Clyne August 30, 2009 10:53AM

RE: putting stupid search engine urls back

AMP Admin August 30, 2009 11:39AM

Re: putting stupid search engine urls back

Jim Ohlstein August 30, 2009 11:57AM

RE: putting stupid search engine urls back

AMP Admin August 30, 2009 12:39PM

Re: putting stupid search engine urls back

Gabriel Ramuglia August 30, 2009 03:37PM

RE: putting stupid search engine urls back

AMP Admin August 30, 2009 04:38PM

RE: putting stupid search engine urls back

AMP Admin August 30, 2009 10:31PM

Re: putting stupid search engine urls back

Gabriel Ramuglia August 31, 2009 12:30AM

RE: putting stupid search engine urls back

AMP Admin August 31, 2009 03:08PM

Re: putting stupid search engine urls back

Gabriel Ramuglia August 31, 2009 03:27PM

RE: php, $_SERVER & server_name

AMP Admin August 31, 2009 05:02PM

Re: php, $_SERVER & server_name

Igor Sysoev August 31, 2009 05:02PM

Re: php, $_SERVER & server_name

mike August 31, 2009 05:07PM

Re: php, $_SERVER & server_name

Cliff Wells August 31, 2009 05:21PM

php, $_SERVER & server_name

AMP Admin August 31, 2009 04:58PM

Re: php, $_SERVER & server_name

Igor Sysoev September 02, 2009 05:49PM

Re: php, $_SERVER & server_name

Cliff Wells September 02, 2009 05:49PM

Re: putting stupid search engine urls back

Martin Schut August 30, 2009 08:39AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 240
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready