I have created index.php file and give header i.e
<?php
header('location:/cicareer/members');
?>
url is:
careermate.in/cicareer/members
I want to remove
/cicareer/members
So, how could I do this using .htaccess
file ?
I have created index.php file and give header i.e
<?php
header('location:/cicareer/members');
?>
url is:
careermate.in/cicareer/members
I want to remove
/cicareer/members
So, how could I do this using .htaccess
file ?
This line may help in your .htaccess file
RewriteRule ^index.php$ /cicareer/members/index.php
In order to use this you need to have mod_rewrite module enabled in your httpd.conf