Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am designing a website. I want my website address to look like the following image:

file name extensions like (PHP/JSP) are hidden

I don't want my website to look like http://something.com/profile.php I want .php extension to be removed in address bar when someone opens my website. In other words I want my website to be like: http://something.com/profile

As a second example, you can look at the StackOverflow website address itself.

Can someone please help me in getting this done? Thanks!

share|improve this question
5  
That's called Pretty URLs and there are already a ton of questions about it. – deceze Jun 30 '11 at 12:45
possible duplicate of Pretty URLs in PHP frameworks – Dave Jarvis Apr 8 '12 at 0:05

4 Answers

up vote 14 down vote accepted

Just add .htaccess file to the root folder of your site(for example, /home/domains/domain.com/htdocs/) with following content:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
share|improve this answer
4  
+1 that's the way to go, but could you explain what happen here in case OP wants to understand these lines – JF Dion Jun 30 '11 at 13:45

You have different choices. One on them is creating a folder named "profile" and rename your "profile.php" to "default.php" and put it into "profile" folder. and you can give orders to this page in this way:

Old page: http://something.com/profile.php?id=a&abc=1

New page: http://something.com/profile/?id=a&abc=1

If you are not satisfied leave a comment for complicated methods.

share|improve this answer

Actually, the simplest way to manipulate this is to

  1. Open a new folder on your server, e.g. "Data"
  2. Put index.php (or index.html) in it

And then the URL www.yoursite.com/data will read that index.php file. If you want to take it further, open a subfolder (e.g. "List") in it, put another index.php in that folder and you can have www.yoursite.com/data/list run that PHP file.

This way you can have full control over this, very useful for SEO.

share|improve this answer

The problem with creating a directory and keeping index.php in it is that

  1. your links with menu will stop functioning
  2. There will be way too many directories. For eg, there will be a seperate directory for each and every question here on stackoverflow

The solutions are 1. MOD REWRITE (as suggested above) 2. use a php code to dynamically include other files in index file. Read a bit more abt it here http://inobscuro.com/tutorials/read/16/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.