Hi, Options +FollowSymLinks AddHandler x-httpd-php5 .php AddHandler x-httpd-php .php4 RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* /index.php [L] The above is the coding that i have in .htaccess, i code this to control all the pages in the index.php file. But when i try to access somethink like http://test.com/firstpage it's goes to firstpage.php instead of index.php. Can any one please help. Thanks in advance
Hi Actually i am redirecting all the controls to index.php. For example if the url is like http://www.test.com/car-images , then in index.php i will get the car-images and depend on the keyword ( here it is car ) i will include the file ( include car.php ). Actually in the same hosting i have use wordpress with url rewriting , its working fine.I don't why this url rewriting is not working. Thanks in advance