Posts Tagged: url rewriting
-
Nov 09, 2010
Comments OffHow to check and enable mod_rewrite module in apache
I’ve got around 15 emails asking from readers, how to check the mod_rewrite module in apache and enable mod_rewrite module in apache after reading two most of the popular post of this blog 5 useful url rewriting examples and hide .php extension with url rewriting. How to check weather mod_rewrite module is enabled or not?...
-
May 21, 2010
Comments Off301 non-www to www or Permanent Redirect any single file URL to give some other one
Permanent Redirect your URL from non-www to www by using following code RewriteEngine On RewriteCond %{HTTP_HOST} ^websitedesigning-company.com [NC] RewriteRule ^(.*)$ http://websitedesigning-company.com/$1 [L,R=301] or Permanent Redirect any single file URL to give some other one RewriteCond %{HTTP_HOST} ^websitedesigning-company.com$ [OR] RewriteCond %{HTTP_HOST} ^www.websitedesigning-company.com$ RewriteRule ^mtp\/career_profile\.php$ “http\:\/\/websitedesigning\-company\.com\/mtp\/career\-advice\-online” [R=301,L] OR RewriteRule oldfile name$ new file name with full path...
-
Feb 22, 2010
1 Comment5 useful url rewriting examples using .htaccess
If you are looking for the examples of URL rewriting then this post might be useful for you. In this post,...
-
Feb 22, 2010
Comments Off