iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Search Engine Optimization Forum SEO is much easier with help from peers and experts! The WebProWorld SEO forum is for the discussion and exploration of various search engine optimization topics. Any non (engine) specific SEO or SEM topics should go here.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-20-2008, 11:20 AM
dux dux is offline
WebProWorld Member
 
Join Date: Jan 2007
Location: Manchester, England
Posts: 71
dux RepRank 0
Default What problems could I encounter using 301 mod_rewrite?

Hi,

I have a site that currently has over 300 pages. This site has been built using standard HTML. I am thinking about converting the site using Joomla.

The site has quite good rankings in search engines so I am going to use mod_rewrite (via the admin control panel) to set up 301 redirects to try and keep them.

My question is - am I likely to encounter any problems with the .htaccess file and the 300+ redirects contained within? Is there a maximum size for a .htaccess file? Would multiple requests for different pages at the same time cause problems? I have asked my hosting company and they have said there should be no problem, but I would like some further advice before I proceed.

Thanks.
Reply With Quote
  #2 (permalink)  
Old 05-20-2008, 12:58 PM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: What problems could I encounter using 301 mod_rewrite?

Generally speaking, the size of an .htaccess file could have a small effect on the server the first time it is processed after a change as the server incorporates new rules, but this effect should be minimal.

However, mod_rewrite does have inherent overhead resulting from the use of the rewrite engine. For massive 301 redirects, it might be less resource intensive to use RedirectMatch directives which work similar to mod_rewrite for 301 redirects. The main difference is that the rewrites are based solely on the original URL, and additional conditionals can not be added. However, it sounds like that is not a major factor in what you are trying to do. The directive is used as follows:

RedirectMatch permanent /oldfolder/(.*) http://www.yourdomain.tld/newfolder/$1
RedirectMatch 301 /(.*).html http://www.yourdomain.tld/$1.php
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #3 (permalink)  
Old 05-20-2008, 07:49 PM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default Re: What problems could I encounter using 301 mod_rewrite?

Wige, knowing Joomla urls as I do, I think he'll have to do one to one redirects, since there won't be exact hierarchy matching.

Anyway, dux, if you include sitemaps in the various search engine formats, this will also help in getting things sorted out.

You might want to look at drupal as an alternative to joomla. There is a way in drupal to specify exactly which url will show for which piece of content, so you can avoid all those redirects, and continue your hierarchy/url structure the way it is now.

Path: readable URLs | drupal.org
Reply With Quote
  #4 (permalink)  
Old 05-20-2008, 08:49 PM
WebProWorld Member
 
Join Date: Oct 2007
Posts: 51
Palindrome RepRank 0
Default Re: What problems could I encounter using 301 mod_rewrite?

Redirects apart, you are taking an HTML site that is doing well and converting that to Joomla? Many people trying to seriously promote sites spend their life doing the opposite.
Reply With Quote
  #5 (permalink)  
Old 05-21-2008, 09:42 PM
ronchalice's Avatar
WebProWorld Pro
 
Join Date: Oct 2006
Location: Colorado
Posts: 129
ronchalice RepRank 2ronchalice RepRank 2
Default Re: What problems could I encounter using 301 mod_rewrite?

Quote:
Originally Posted by Palindrome View Post
Redirects apart, you are taking an HTML site that is doing well and converting that to Joomla? Many people trying to seriously promote sites spend their life doing the opposite.
Not necessarily so. It depends on the strategic plan for updates and maintenance. Many organizations now use CMS exclusively because it provides the ability to easily delegate the functions of content creation to non-technical employees and associates. For many especially small business and non-profit organizations, this ability has greatly increased the ability to provide current, quality content.

I do agree with BJ, however. Joomla URLs can be tricky and must be carefully planned during conversion. Once converted, that complexity is irrelevant regarding new content.
Reply With Quote
  #6 (permalink)  
Old 05-22-2008, 02:24 PM
Peter (IMC)'s Avatar
WebProWorld MVP
WebProWorld MVP
 
Join Date: Dec 2003
Posts: 1,485
Peter (IMC) RepRank 4Peter (IMC) RepRank 4Peter (IMC) RepRank 4Peter (IMC) RepRank 4
Default Re: What problems could I encounter using 301 mod_rewrite?

Quote:
Originally Posted by dux View Post
Hi,

I have a site that currently has over 300 pages. This site has been built using standard HTML. I am thinking about converting the site using Joomla.

The site has quite good rankings in search engines so I am going to use mod_rewrite (via the admin control panel) to set up 301 redirects to try and keep them.

My question is - am I likely to encounter any problems with the .htaccess file and the 300+ redirects contained within? Is there a maximum size for a .htaccess file? Would multiple requests for different pages at the same time cause problems? I have asked my hosting company and they have said there should be no problem, but I would like some further advice before I proceed.

Thanks.
Considering that you haven't converted yet, throw the idea of Joomla in the bin and forget about it completely. Joomla is, in my experience, the worsed choice you can make. Go for something else. Investigate better options.

Joomla Search Engine Friendly URLs are the worsed thing I have ever seen, they´re everything but friendly, to anybody.
__________________
FREE SEO ! Really? YES! All you have to do is implement it!
Follow me on Twitter PeterIMC
Reply With Quote
  #7 (permalink)  
Old 05-23-2008, 04:04 AM
NetProwler's Avatar
WebProWorld Member
 
Join Date: Jan 2007
Posts: 88
NetProwler RepRank 2
Default Re: What problems could I encounter using 301 mod_rewrite?

You may not get the same rankings even after a 301 redirection. As others have said you must look for a CMS which will allow you to specify your way of URLs. That way you can use mod_rewrite to serve the new pages for the old URLs. This will help you to retain the rankings.
Reply With Quote
  #8 (permalink)  
Old 05-23-2008, 06:54 AM
dux dux is offline
WebProWorld Member
 
Join Date: Jan 2007
Location: Manchester, England
Posts: 71
dux RepRank 0
Default Re: What problems could I encounter using 301 mod_rewrite?

Thanks for all the replies.

I have never used Joomla before and I have to admit I am quite surprised at the negativity being generated here. Is this because I am thinking of converting or would the same url problems occur when building a site from scratch? The only real alternative I can think of, as suggested by bj, is Drupal, which I have had a look at but didn't really get on very well with. I use Wordpress for blogs, but do you have any other suggestions for a CMS (if Joomla is no good from scratch - I really like the user interface on Joomla)?

The reason for transferring to a CMS was to be able to easier add updates and to allow people with non technical knowledge to add content. ronchalice is bob on.

We have had a think about the way forward for the site in question and we have now decided to stick with the current setup (html) and go for a redesign. We will also be paying more attention to the SEO as that needs reviewing and updating.

We will probably still have to use some 301's as the file structure needs attention. This will involve moving files from the root directory to specific folders.
Reply With Quote
  #9 (permalink)  
Old 05-23-2008, 08:41 PM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default Re: What problems could I encounter using 301 mod_rewrite?

Drupal is an acquired taste, and is not for everyone. It takes a bit to get going with it, though once you get rolling with it, it's very flexible. It will allow you to completely follow the structure of the old site.

Depending on your site's structure, it IS possible that Wordpress can be made to work. Maybe.

Joomla has never been very friendly or easy to deal with when trying to import an old site into it, and the urls have never been SEFU, even though they pay lip service to that. Joomla's okay for new sites, though I think there are much better CMS out there than Joomla.

Another option for you would be ModX. The aliasing in ModX will allow you to duplicate site structure.

Or you can simply facelift the static site. But the future really is with dynamic sites. They're just so much easier to deal with on the longterm, and give so much more ability to keep a site fresh and content rich, which gets you up there in the SERPs much quicker. And with future redesigns, if you want a facelift you simply drop in a new skin, and the whole site is DONE. None of these site structure worries like you're having now.
Reply With Quote
Reply

  WebProWorld > Search Engines > Search Engine Optimization Forum

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to do a mod_rewrite? watto Web Programming Discussion Forum 2 06-02-2007 01:17 PM
mod_rewrite question watto Web Programming Discussion Forum 4 05-27-2007 09:01 PM
mod_rewrite not rewriting wige Web Programming Discussion Forum 4 04-25-2007 08:32 PM
mod_rewrite watto Services for Sale/Hire 0 11-08-2005 08:47 PM
My Encounter With Search Spam On Blogger WPW_Feedbot Search Engine Optimization Forum 0 06-13-2005 04:00 PM


All times are GMT -4. The time now is 01:12 AM.



Search Engine Optimization by vBSEO 3.3.0