Web Development
  Home arrow Web Development arrow Module mod rewrite Tutorial (Part 3)
Affiliate Promotion  
Blog Help  
Domain Name Tips  
How To  
Newsletter Marketing  
Online Business Help  
Search Engine Tricks  
Web Development  
Web Hosting  
Website Advertising  
Website Content  
Website Marketing  
 Webmaster Tools
 
Base64 Encoding 
Browser Settings 
CSS Coder 
CSS Navigation Menu 
Datetime Converter 
DHTML Tooltip 
Dig Utility 
DNS Utility 
Dropdown Menu 
Fetch Content 
Fetch Header 
Floating Layer 
htaccess Generator 
HTML to PHP 
HTML Encoder 
HTML Entities 
IP Convert 
Meta Tags 
Password Encryption
 
Password Strength
 
Pattern Extractor 
Ping Utility 
Pop-Up Window 
Regex Extractor 
Regex Match 
Scrollbar Color 
Source Viewer 
Syntax Highlighting 
URL Encoding 
Web Safe Colors 
Whois
 
Forums Sitemap 
Mobile Linux 
APP Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
WEB DEVELOPMENT

Module mod rewrite Tutorial (Part 3)
By: Developer Shed
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 3 stars3 stars3 stars3 stars3 stars / 1
    2003-08-09

    Table of Contents:

    Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    The Apache server power commander part 3
    By Dirk Brockhausen

    In the two preceding parts of this tutorial we explained the basics of Rules and Conditions.

    We will now follow up with two examples to illustrate their use for somewhat more complex applications.

    The first example deals with dynamicall generated pages while the second example will cover calling up ".txt" files.

    For our first example, let's assume that you want to sell several items of merchandise on your web site.

    Your clients are guided to various detailed product descriptions via a script:

    http://www.yoursite.com/cgi-bin/shop.cgi?product1
    http://www.yoursite.com/cgi-bin/shop.cgi?product2
    http://www.yoursite.com/cgi-bin/shop.cgi?product3

    These URLs are included as links on your site.

    If you want to submit these dynamic pages to the search engines, you are confronted with the problem that most of them will not accept URLs containing
    the "?" character.

    However, it would be perfectly possible to submit an URL of the following format:

    http://www.yoursite.com/cgi-bin/shop.cgi/product1

    Here, the "?" character has been replaced by "/".

    Yet more pleasing to the eye would be a URL of this type:

    http://www.yoursite.com/shop/product1

    To the search engine, this appears to be just another acceptable hyperlink, with "shop" presenting a directory containing files "product1", "product2", etc.

    If a visitor clicks this link on a search engine's results page, this URL must be reconverted to make sure that "shop.cgi?product1" will actually be called.

    To this effect we will make use of mod_rewrite with the following entries:

    RewriteEngine on
    Options +FollowSymlinks
    RewriteBase /
    RewriteRule ^(.*)shop/(.*)$ $1cgi-bin/shop.cgi?$2

    The variables $1 and $2 constitute so-called
    "backreferences". These are related to text groups.

    Everything called in the clicked URL which is located before "shop" plus everything following "shop/" is defined by and stored in the two variables $1 and $2

    Up to this point our given examples made use of rules such as this one:

    RewriteRule ^.htaccess*$ - [F]

    However, we did not yet achieve a true rewrite in the sense that one URL would be switched to another.

    For the entry in our current example:

    RewriteRule ^(.*)shop/(.*)$ $1cgi-bin/shop.cgi?$2

    this general syntax applies:

    RewriteRule currentURL rewrittenURL

    As you can see, this command executes a real rewrite.

    In addition to installing the ".htaccess" file, all links in your normal HTML pages which follow the format "cgi-bin/shop.cgi?product" must be changed to: "shop/product" (without the quotes).

    When a spider visits a normal HTML page of this kind it will also follow or crawl the product links because there is no question mark contained in the link anymore to prevent it from doing so.

    So employing this method you can convert dynamically generated product descriptions into seemingly static web pages and feed them to the search engines.

    In our second example we will discuss how to redirect calls for ".txt" files to a program script.

    Many webspace providers running Apache will feature system log files only in common format. What this means is that these logs will not store visitor Referrers and UserAgents.

    However, in relation to "robots.txt" calls it is preferable to have access to this information in order to learn more about visiting spiders than merely their IPa.

    To effect this, the entries in ".htaccess" should be as follows:

    RewriteEngine on
    Options +FollowSymlinks
    RewriteBase /
    RewriteRule ^\robots.txt$ /text.cgi?%{REQUEST_URI}


    Now, when "robots.txt" is called, the applied Rule will redirect your visitor to the program script "text.cgi".

    Furthermore, a variable is conveyed to the script which will be processed by the program.

    "REQUEST_URI" defines the name of the file you expect to be called. In out example this is "robots.txt".

    The script will now read the contents of "robots.txt" and will forward them to the web browser or the search engine spider.

    Finally, the visitor hit is archived in the log file. To this effect, the script will pull the environmental variables "$ENV{'HTTP_USER_AGENT'}" etc. This will provide the required information.

    Here is the source code for the cgi script mentioned above:

    <BEGIN SOURCE CODE>
    #!/usr/bin/perl
    # If required, adjust line above to point to Perl 5.
    ######################################################
    # (c) Copyright 2000 by fantomaster.com #
    # All rights reserved. #
    ######################################################

    $stats_dir = "stats";
    $log_file = "stats.log";

    $remote_host = "$ENV{'REMOTE_HOST'}";
    $remote_addr = "$ENV{'REMOTE_ADDR'}";
    $user_agent = "$ENV{'HTTP_USER_AGENT'}";
    $referer = "$ENV{'HTTP_REFERER'}";
    $document_name = "$ENV{'QUERY_STRING'}";

    open (FILE, "robots.txt");
    @TEXT = <FILE>;
    close (FILE);

    &get_date;

    &log_hits
    ("$date $remote_host $remote_addr $user_agent $referer $document_name\n");

    print "Content-type: text/plain\n\n";
    print @TEXT;

    exit;

    sub get_date {
    ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime();
    $mon++;
    $sec = sprintf ("%02d", $sec);
    $min = sprintf ("%02d", $min);
    $hour = sprintf ("%02d", $hour);
    $mday = sprintf ("%02d", $mday);
    $mon = sprintf ("%02d", $mon);
    $year = scalar localtime;
    $year =~ s/.*?(\d{4})/$1/;
    $date="$year-$mon-$mday, $hour:$min:$sec";
    }

    sub log_hits {
    open (HITS, ">>$stats_dir/$log_file");
    print HITS @_;
    close (HITS);
    }

    <END SOURCE CODE>

    To install the script, upload it to your web site's main or DocumentRoot directory by ftp and change file permissions to 755.

    Next, create the directory "stats".

    A more detailed description on how to install a script can he found in our online manuals, e.g. here:

    < http://www.fantomaster.com/fantomasSuite/logFrog/lfhelp.txt >


    If your server's configuration does not permit execution of Perl or CGI scripts in the main directory (DocumentRoot), you may wish to try the following RewriteRule instead:

    RewriteRule ^\robots.txt$ /cgi-bin/text.cgi?%{REQUEST_URI}

    Note, however, that in this case you will have to modify the paths accordingly in the program script!

    Finally, here's the solution to our quiz from the previous issue of fantomNews:


    RewriteCond %{REMOTE_ADDR} ^216\.32\.64
    RewriteRule ^.*$ - [F]

    Quiz question:

    If we don't write "^216\.32\.64\." for a regular
    expression in the configuration above, but
    "^216\.32\.64" instead, will we get the identical
    effect, i.e. will this exclude the same IPs?

    The regular expression ^216\.32\.64 will apply e.g. to the following strings:

    216.32.64
    216.32.640
    216.32.641
    216.32.64a
    216.32.64abc
    216.32.64.12
    216.32.642.12

    Hence, "4" may be followed by any character string.

    However, IP addresses can only have the maximal value
    255.255.255.255 - which implies that e.g. 216.32.642.12 is not a valid IP. The only valid IP in the list above is 216.32.64.12!

    Although the two regular expressions "^216\.32\.64\." and "^216\.32\.64" allow for different strings, due to the technical limitation of IP addresses to 0-255 this range of IPs will remain excluded.

    Continue with this tutorial >>>


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More Web Development Articles
    More By Developer Shed

     

    IBM® developerWorks developerWorks - FREE Tools!


    Build Forge Express demo: Enabling software delivery excellence for small and midsized businesses

    This demonstration gives you an overview of IBM® Rational® Build Forge Express Edition, a global offering that provides a framework to automate and execute software processes. Rational Build Forge provides a software assembly line that can support all of your tools, technologies, and platforms so you can achieve a repeatable, reliable, and traceable build and release process.
    FREE! Go There Now!


    NEW! Calling all CC Power Users – and those that would like to be!

    Join this Rational Talks to You teleconference, featuring Paul Boustany and Mark Krasovich, to speak to the experts about becoming a Rational ClearCase power user. Get a chance to ask your questions and learn tips and tricks for using Rational ClearCase in Agile development
    FREE! Go There Now!


    NEW! IBM – Taking Web 2.0 to Work

    David Barnes, Lead Evangelist for IBM Emerging Internet Technologies will discuss aspects of Web 2.0 that bring value to corporations, academia, and government. He'll also discuss IBM's vision around Web 2.0, including the importance of remixability and consumability. The discussion will culminate with examples of various IBM Software Group solutions you can use to get ahead of the Web 2.0 adoption curve.
    FREE! Go There Now!


    NEW! Best practices for software analysis: An introduction to the IBM Rational Software Analyzer application

    This whitepaper presents the benefits of successfully introducing static analysis into your organization using IBM Rational Software Analyzer. Additionally, it identifies some common pitfalls that can hinder the effective use of static analysis tooling as well as presents 10 simple strategies designed to help you quickly realize the value of static analysis using Rational Software Analyzer.
    FREE! Go There Now!


    NEW! Section 508 of the U.S. Rehabilitation Act: Web accessibility compliance

    Because access to government information continues to be an area of concern for many U.S. citizens with disabilities, the U.S. government enacted Section 508 of the Rehabilitation Act in 2001 to ensure that government agencies create accessible Web content, enabling all citizens to access the information they need. A fully accessible Web site makes Web content accessible to all individuals, including those with disabilities, who may be accessing Web content via a variety of user agents. Common user agents include standard Web browsers, text-only browsers, assistive devices and mobile devices such as cell phones or personal digital assistants (PDAs).
    FREE! Go There Now!


    NEW! The role of integrated requirements management in software delivery

    This paper is about the critical role that a discipline called integrated require­ments management can play in helping to ensure that your business goals and IT investments are continuously aligned—whether you are sourcing, integrat­ing, building or maintaining software. It also looks at ways that automated IBM Rational® products can work together to help you use requirements in the very best way.
    FREE! Go There Now!


    NEW! Trial download: IBM Informix Dynamic Server Express Edition V11.0

    Informix Dynamic Server (IDS) Express Edition offers outstanding online transaction processing (OLTP) database performance, while helping to simplify and automate many of the tasks associated with deploying databases for small business applications. IDS 11 further extends the ease of management and applications integration with the Admin API and Scheduler, high availability with Continuous Log Restore for backup server recovery in case of a primary server failure, and column level encryption to protect personal and company private data.
    FREE! Go There Now!


    NEW! Trial download: IBM Rational Method Composer V7.2

    Get a free trial download of the latest version of IBM Rational Method Composer V7.2 which helps you deliver customized yet consistent process guidance to your project teams and IT organization, and includes the latest version of IBM Rational Unified Process (RUP), which has provided process guidance to teams since 1996.
    FREE! Go There Now!


    NEW! Webcast: Quickly provide customized, integrated user interfaces with Lotus Notes 8

    IBM Lotus Notes 8 provides a wide range of developers the ability to provide customized, integrated user interfaces via composite applications and via custom sidebar and toolbar plug-ins. This webcast provides you with tips and techniques to use with out-of-the-box capabilities of Lotus Notes 8, and survey how you can share useful components within your own company and within a larger community.
    FREE! Go There Now!


    NEW! Webcast: What is new in Viper 2 for developers?

    Viper 2 brings a great value to developer communities including SQL, XML, PHP, Ruby, .NET and Java. You probably already know that DB2 Express-C is free for developers to develop, deploy and distribute. Viper 2 provides a variety of means that help move your application from the development stage to deployment more rapidly. This webcast shows how to best utilize the latest tools available for developing DB2 applications.
    FREE! Go There Now!



    All FREE IBM® developerWorks Tools!

       

    WEB DEVELOPMENT ARTICLES

    - Make Your WordPress Website Look Professional
    - How to Create a Mobile Web Site
    - Meta Tags: Still Useful?
    - Build a Completely Free Site
    - Is Your Site Secure?
    - What`s So Special About Your Site?
    - Add Games to Your Site
    - Should You Offer E-mail?
    - The Trouble with CAPTCHA
    - Add Images Responsibly
    - Is There a Science to Site Design?
    - Shortcuts for Page Design
    - Rebranding a Community
    - Firebug Firefox Extension Review
    - Is a CMS or Custom Code Better for Your Web ...

     
    Create the Optimal Architecture for your Critical Applications
    Warburton's the largest independently owned bakery in the UK faced a number of d....

     
    Five Best Practices for Deploying a Successful Service-Oriented Architecture
    This white paper describes the benefits you can expect with SOA, and how IBM can....

     
    Gartner Magic Quadrant for Application Delivery Controllers
    Gartner summarizes its view on Application Delivery Controllers, evaluates stren....

     
    Knowledge is Power
    What you don't know can hurt you, and is likely costing you money and increasing....

     
    Rationalizing the Multi-Tool Environment
    The rationalized multi-tool approach is flexible, scalable and cost effective. I....

     




    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 6 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek