MuminCelik.Com - (SEO) Search Engine Optimization Expert, Consultant, Website Developer, Designer
Click here to go to english version of mumincelik.com Turkce versiyonu icin tiklayin
Web Project Consultant, Adviser, Developer E-Commerce, Online Payment (PayPal, Credit Card) and Shipping(UPS, USPS) Systems (SEO) Search Engine Optimization Consultant, Expert EMail Marketing, E-Marketing, Affiliates (SEO) Search Engine Optimizer EMail Marketing, E-Marketing, Affiliates PHP, MySQL, XML, AJAX, RSS, JavaScript, CSS Developer, Expert (SEO) Search Engine Optimizer (SEO) Search Engine Optimizer Website Developer, Designer EMail Marketing, E-Marketing, Affiliates PHP, MySQL, XML, AJAX, RSS, JavaScript, CSS Developer, Expert PHP, MySQL, XML, AJAX, RSS, JavaScript, CSS Developer, Expert Website Developer, Designer
OFFICIAL PERSONAL HOME
EMail Marketing, E-Marketing, Affiliates Web Project Consultant, Adviser, Developer EMail Marketing, E-Marketing, Affiliates
Website Developer, Designer
Shopping Card Integration and Modules, Coupon, Specials, Upsell Features
OFFICIAL HOME
RESUME
PROJECTS
REFERENCES
(SEO) Search Engine Optimization Consultant, Expert (SEO) Search Engine Optimizer PHP, MySQL, XML, AJAX, RSS, JavaScript, CSS Developer, Expert Web Project Consultant, Adviser, Developer
DOCUMENTS
Content Management Systems and Administration, Report, Analysis, Stat Tools
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.
EMail Marketing, E-Marketing, Affiliates PHP, MySQL, XML, AJAX, RSS, JavaScript, CSS Developer, Expert
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
(SEO) Search Engine Optimizer PHP, MySQL, XML, AJAX, RSS, JavaScript, CSS Developer, Expert
(SEO) Search Engine Optimization Consultant, Expert
(SEO) Search Engine Optimization Consultant, Expert Shopping Card Integration and Modules, Coupon, Specials, Upsell Features E-Commerce, Online Payment (PayPal, Credit Card) and Shipping(UPS, USPS) Systems
Website Developer, Designer Shopping Card Integration and Modules, Coupon, Specials, Upsell Features