PHPEveryday.com PHP and Web Development Tutorial
What are you looking for?


mod_rewrite - Part 3: build your own "fantasy" URL


mod_rewrite tutorial: In this tutorial, I will show you how to make "bestethnic.html" to instead "product.php?id=3". Before you read, make sure you have understood part 1 and part 2 from this series.

Assume, you work on www/product (it root folder for www.yoursite.com).

Ok, folow this steps:

1. Create .htaccess on your folder.
2. Write this code:
RewriteEngine On

# translate bestethnic.html to product.php?id=3
RewriteRule ^bestethnic\.html$ product.php?id=3
3. create product.php
4. write this code at product.php
<?php
echo "you have choose product id: #".$_GET['id'];
>

Catch idea?



Series this article:
mod_rewrite - Part 1: create your "fantasy" URL
mod_rewrite - Part 2: Instalasi modules in Apache
mod_rewrite - Part 3: build your own "fantasy" URL


Tag: mod_rewrite, url, apache module Category: Apache Post : October 09th 2007 Read: 2,660 Bookmark and Share

blog comments powered by Disqus


Database Tutorial
  • Learn PHP MySQL
  • Learn PHP ADOdb
  • Learn PHP Data Object/PDO
  • Learn PHP XML
  • Learn PHP SimpleXML
Security Tutorial
  • Learn PHP Security
  • Learn HTTP Authentication
  • Learn PHPSecureSite
Framework Tutorial
  • Learn CodeIgniter
  • Learn Joomla
  • Learn Smarty
  • Learn Zend Framework
Template Tutorial
  • Learn Joomla Template
  • Learn WordPress Template
API Tutorial
  • Learn Facebook
JS Framework Tutorial
  • Learn MooTools
  • Learn JQuery
AJAX Tutorial
  • Learn AJAX in 10 Minutes
  • Learn AJAX Client Side
  • Learn AJAX PHP
  • Learn AJAX Remote Server
  • Learn AJAX Repetitive
  • Learn AJAX MySQL
  • Learn AJAX Grid
Web Services Tutorial
  • Learn Web Services NuSOAP
  • Learn Web Services WSDL
  • Learn Web Services WSDL Array
  • Learn Web Services .NET Grid
  • Learn Web Services WDDX
Package Post
  • Joomla Intro
  • Joomla Component
  • Joomla Module
  • Joomla MVC
  • Joomla MVC Backend
  • PostNuke Intro
  • Zend Framework Intro
  • Zend Framework Action
  • Zend Framework Database
  • Zend Framework Registry
  • Zend Framework Config
  • Zend Framework Login
  • Zend Framework Session
  • PHP Array Tips
  • PHP File Tips
  • PHP Email
  • PHP Ms Excel
  • PHP Pattern
  • PHP SMS
  • Flash Database
  • PHP Multitier
  • jQuery Introduction
  • jQuery Selectors
  • Portable Web Server
  • Web Mobile Intro
  • Drupal Installation
  • Drupal Configuration