How to remove file extension from URL??

You can create a folder. name it as your page name is. and then can create a php file with index.php in that folder and can insert code into that file. then it will remove .php from the URL..

Then it will be http://www.mysite.com/folder

Let me know if you need any help in this.

THanks
Palwinder
 
You can create a folder. name it as your page name is. and then can create a php file with index.php in that folder and can insert code into that file. then it will remove .php from the URL..

Then it will be http://www.mysite.com/folder

Let me know if you need any help in this.

THanks
Palwinder
Thanks man. It just solved my problem. +rep
 
using htaccess is possible like this:

RewriteEngine on

RewriteRule ^Registration/?$ registration.php?id=$1 [L]

simple and easy
 
You can create a folder. name it as your page name is. and then can create a php file with index.php in that folder and can insert code into that file. then it will remove .php from the URL..

Then it will be http://www.mysite.com/folder

Let me know if you need any help in this.

THanks
Palwinder

What he says. It's the simplest method
You can also work with subdomains. So it could be folder.yoursite.com instead
 
Back
Top