MuminCelik.Com - (SEO) Search Engine Optimization Expert, Website Developer, Designer
Click here to go to english version of mumincelik.com Turkce versiyonu icin tiklayin
Website Developer, Designer Website Developer, Designer Web Project Consultant, Adviser, Developer Web Project Consultant, Adviser, Developer EMail Marketing, E-Marketing, Affiliates E-Commerce, Online Payment (PayPal, Credit Card) and Shipping(UPS, USPS) Systems Shopping Card Integration and Modules, Coupon, Specials, Upsell Features Content Management Systems and Administration, Report, Analysis, Stat Tools (SEO) Search Engine Optimizer Shopping Card Integration and Modules, Coupon, Specials, Upsell Features Web Project Consultant, Adviser, Developer E-Commerce, Online Payment (PayPal, Credit Card) and Shipping(UPS, USPS) Systems E-Commerce, Online Payment (PayPal, Credit Card) and Shipping(UPS, USPS) Systems (SEO) Search Engine Optimizer
OFFICIAL PERSONAL HOME
Content Management Systems and Administration, Report, Analysis, Stat Tools Shopping Card Integration and Modules, Coupon, Specials, Upsell Features Shopping Card Integration and Modules, Coupon, Specials, Upsell Features
E-Commerce, Online Payment (PayPal, Credit Card) and Shipping(UPS, USPS) Systems
Content Management Systems and Administration, Report, Analysis, Stat Tools
OFFICIAL HOME
RESUME
PROJECTS
REFERENCES
(SEO) Search Engine Optimizer E-Commerce, Online Payment (PayPal, Credit Card) and Shipping(UPS, USPS) Systems (SEO) Search Engine Optimizer Website Developer, Designer
DOCUMENTS
Website Developer, Designer
LOGO DESIGN
The Job I Want

- Everyday, I woke up and I can’t wait to get here
- It is not a choice between fun and work. It is a choice for fun and work.
- what I work for should not be heavy, it should be my job.
(SEO) Search Engine Optimization Consultant, Expert EMail Marketing, E-Marketing, Affiliates
htaccess configuration

.htaccess is used to set configuration of any specific directory. Nowadays, it mostly uses to create Search Engine Friendly pages. You can redirect any url typed with your domain to specific url. To be able to use you need modify your httpd.conf which is server configuration file and change AllowOverride to &"all&" and mod_rewrite  module for apache server. Than you can use .htaccess.

I will show some basic examples to help you learn how to use it.

RewriteEngine on

RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php

Over here, !(pattern) is used when url doesn’t match pattern. It means, if users type any js, ico, gif. Jpg, png or css file, it doesn’t apply this rule. Except these, it will apply this rule and redirect any php, html file to index.php file.

If we want to redirect just html files like when users types product_ABC.html, I want to redirect it to, product.php?product=ABC. So this is also search engine friendly page because search engines likes html pages.

RewriteRule product_(.*)\.htm$  product.php?product=$1

Here, at first we define url and (.*) means any thing and it will go to second page we defined. $1 first (.*) and we can use many of these like

RewriteRule products_(.*)_(.*)\.htm$  products.php?category=$1&brand=$2

If you want to redirect a directory to other;

RewriteCond %{HTTP_HOST} ^tr.bounmis.com$ [OR">

RewriteCond %{HTTP_HOST} ^www.tr.bounmis.com$

RewriteRule ^(.*)$ http://www.bounmis.com/tr/ [R=301,L">

Here, rewriteCond shows condition you can see some words at the end [OR"> means its has any more condition. R=301 means it is permanent address and L means it is last rule, end of [OR] for above conditions.

If you want to redirect any url like bounmis.com/category/1/brand/5

RewriteRule ^([A-Za-z0-9-">+)/([0-9">+)/([A-Za-z0-9-">+)/([0-9">+)/?$ products.php?$1=$2&$3=$4 [L]

These are mostly used examples .

At last I want to say that if your Apache server uses CGI or fastcgi and you always get an error message like &"No input file specified&". Put [PT"> at the end of rules

RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php [PT]

To Ask Any Question About HTAccess Configuration, Click Here

February 21, 2008 07:26PM MST
Web Project Consultant, Adviser, Developer EMail Marketing, E-Marketing, Affiliates
Content Management Systems and Administration, Report, Analysis, Stat Tools
Website Developer, Designer Web Project Consultant, Adviser, Developer Web Project Consultant, Adviser, Developer
(SEO) Search Engine Optimization Consultant, Expert E-Commerce, Online Payment (PayPal, Credit Card) and Shipping(UPS, USPS) Systems