Page 2 of 6 FirstFirst 1 2 3 4 5 6 LastLast
Results 16 to 30 of 87
Like Tree7Likes

vBSEO Optimization Tips

This is a discussion on vBSEO Optimization Tips within the General Discussion forums, part of the vBSEO SEO Plugin category; my host adviced me not to put anything because i use cpanel and each time i update cpanel. All changes ...

  1. #16
    Senior Member webmastersitesi's Avatar
    Join Date
    Oct 2007
    Posts
    518
    Liked
    15 times
    Blog Entries
    3
    my host adviced me not to put anything because i use cpanel and each time i update cpanel. All changes gone. But i am not sure can i use it with a cpanel installed server?

  2. #17
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,689
    Liked
    157 times
    Do you mean to put anything in Apache configuration file? There are no issues related to CPanel with vBSEO.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  3. #18
    Senior Member webmastersitesi's Avatar
    Join Date
    Oct 2007
    Posts
    518
    Liked
    15 times
    Blog Entries
    3
    i mean for httpd.conf, if i put the htaccess datas in it and then when cpanel updated i may lost these settings...

  4. #19
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,689
    Liked
    157 times
    You should be able to put rewrite rules in custom config file and include it in the main Apache config.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  5. #20
    Senior Member MissKalunji's Avatar
    Real Name
    Mj
    Join Date
    Mar 2006
    Location
    Canada
    Posts
    207
    Liked
    2 times
    Quick Question
    Move rewrite rules from .htaccess to httpd.conf

    For users with dedicated servers, the vBSEO rewrite rules applied in the .htaccess files can be moved directly into the httpd.conf file for more efficient performance.
    What's the big difference? can anyone technically explain that to me? i'm just curious

  6. #21
    Senior Member
    Real Name
    Joseph Ward
    Join Date
    Jun 2005
    Posts
    23,847
    Liked
    32 times
    Blog Entries
    9
    More here:
    Optimizing Apache Server Performance

    When (not) to use .htaccess files

    In general, you should never use .htaccess files unless you don't have access to the main server configuration file. There is, for example, a prevailing misconception that user authentication should always be done in .htaccess files. This is simply not the case. You can put user authentication configurations in the main server configuration, and this is, in fact, the preferred way to do things.
    .htaccess files should be used in a case where the content providers need to make configuration changes to the server on a per-directory basis, but do not have root access on the server system. In the event that the server administrator is not willing to make frequent configuration changes, it might be desirable to permit individual users to make these changes in .htaccess files for themselves. This is particularly true, for example, in cases where ISPs are hosting multiple user sites on a single machine, and want their users to be able to alter their configuration.
    However, in general, use of .htaccess files should be avoided when possible. Any configuration that you would consider putting in a .htaccess file, can just as effectively be made in a <Directory> section in your main server configuration file.
    There are two main reasons to avoid the use of .htaccess files.
    The first of these is performance. When AllowOverride is set to allow the use of .htaccess files, Apache will look in every directory for .htaccess files. Thus, permitting .htaccess files causes a performance hit, whether or not you actually even use them! Also, the .htaccess file is loaded every time a document is requested.
    More here:
    Apache Tutorial: .htaccess files - Apache HTTP Server

  7. #22
    Senior Member MissKalunji's Avatar
    Real Name
    Mj
    Join Date
    Mar 2006
    Location
    Canada
    Posts
    207
    Liked
    2 times
    oh interesting i always learn a lot with you guys. Thanks

    Now my next question (i'm a beginner to those things) besides my unix classes i wasn't scared but i've never tested anything on my server afraid of breaking something lol

    How do i do it? i'm on a dedicated server

  8. #23
    Senior Member
    Real Name
    Joseph Ward
    Join Date
    Jun 2005
    Posts
    23,847
    Liked
    32 times
    Blog Entries
    9
    See here:
    http://www.faqs.org/docs/securing/chap29sec245.html

    Once you edit the file, you need to re-start Apache.

  9. #24
    Junior Member
    Real Name
    Eric
    Join Date
    Mar 2008
    Posts
    24
    Liked
    0 times

    Question

    Hi,

    I'm new.

    May I know what is CRU format?

    How to include [forum_id] in the CRU format? include through vBulletin control panel? or vbSEO control panel?

    Thank you.

    Regards,
    Eric

  10. #25
    Junior Member
    Real Name
    fancom
    Join Date
    Mar 2008
    Posts
    27
    Liked
    0 times
    I have an ignorant question: what is the topic for and how to apply it? (what's CRU...). Thanks.

  11. #26
    Senior Member
    Real Name
    Joseph Ward
    Join Date
    Jun 2005
    Posts
    23,847
    Liked
    32 times
    Blog Entries
    9
    CRU stands for "Content Relevant URL", which typically means that keywords related to the page topic are included in the URL.

    Static or rewritten URLs are considered CRUs if they contain keywords.

    You can configure your URL Rewriting for vBSEO within the control panel (vbseocp.php).

  12. #27
    711
    711 is offline
    Junior Member
    Real Name
    711
    Join Date
    Nov 2007
    Posts
    16
    Liked
    0 times
    Quote Originally Posted by Joe Ward View Post
    More here:
    Optimizing Apache Server Performance


    When AllowOverride is set to allow the use of .htaccess files, Apache will look in every directory for .htaccess files. Thus, permitting .htaccess files causes a performance hit, whether or not you actually even use them! Also, the .htaccess file is loaded every time a document is requested
    If this is true, it seems then that moving rewrite rules from .htaccess to httpd.conf might not actually result in much of a performance gain if AllowOverides is not also disabled, no?

  13. #28
    711
    711 is offline
    Junior Member
    Real Name
    711
    Join Date
    Nov 2007
    Posts
    16
    Liked
    0 times
    Quote Originally Posted by 711 View Post
    If this is true, it seems then that moving rewrite rules from .htaccess to httpd.conf might not actually result in much of a performance gain if AllowOverides is not also disabled, no?
    No response to this observation/question?

  14. #29
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,689
    Liked
    157 times
    With AllowOverride enabled, there still IS a difference when moving rewrite rules to httpd.conf, since Apache will not parse rewrite rules for every request.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  15. #30
    711
    711 is offline
    Junior Member
    Real Name
    711
    Join Date
    Nov 2007
    Posts
    16
    Liked
    0 times
    I have moved the rewrite rules from .htaccess to httpd.conf, and I can see a very noticable improvement on performance.

    Thanks for the suggestion!

Page 2 of 6 FirstFirst 1 2 3 4 5 6 LastLast

Similar Threads

  1. vBSEO 2.2.0 Released - Google/Yahoo Sitemap Compatible
    By Juan Muriente in forum vBSEO Announcements
    Replies: 58
    Last Post: 11-17-2005, 11:49 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •