Creative, Informative and Entertaining Stuff for everyone

Monday February 6th 2012

Categories

Archives

Calender

February 2012
S M T W T F S
« Dec    
 1234
567891011
12131415161718
19202122232425
26272829  

‘.htaccess’ Archives

How to remove file extension using .htaccess

Options +FollowSymLinks RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(+)$ $1.php

How to remove single file extension using .htaccess

Options +FollowSymLinks RewriteEngine on RewriteCond %{filename.php} !-d RewriteRule ^(+)$ $1.php

How to configure the symfony project directory

Your symfony project derectory is "/var/www/html/sf_sandbox" so in the browser you can acess this by this URL : "http://localhost/sf_sandbox/web/frontend.php/" So if you want to map the symfony project directoy to your web root directory ie i mean to say you just want to acess it my using the URL :"http://localhost/" then you have to add the [...]

How to redirect domain to other directory on the same domain

Open the .htaccess file of your root directory of your project and add the following line. RewriteEngine On RewriteCond %{HTTP_HOST} !^http://someDomainName.com RewriteCond %{HTTP_HOST} !^http://www.someDomainName.com RewriteCond %{HTTP_HOST} !^$ RewriteCond %{REQUEST_URI} !^/someOtherDirectory/ RewriteRule ^(.*)$ /someOtherDirectory/$1 Then [...]