0

I am developing website using php and mysql.my each page file extension end with .php extension how do i avoid that?what I have to do for that?

I don't have any framework language.I want to learn the mvc pattern. I want to know which framework is easy level because I always benefited by stack team.According to me stack team will give easy way for me.

For ex:http://academy.in/services.php I have change to http://www.academy.in/services

1 Answers1

0

You need to create a .htaccess file

A bit like this....

Options +FollowSymLinks
Options +Indexes
RewriteEngine on
RewriteBase /

RewriteRule ^/?services/$ services.php [NC,L]
AdRock
  • 2,959
  • 10
  • 66
  • 106
  • my thanks to each and every one I will follow all the link which you have listed here.my main question will there is no need of frame work here?because people are saying codeIgniter,kohana, I want to know which is easy? because i am strong in plain php and mysql – vkacademy vk Oct 08 '14 at 09:24