-6

Please check following details

Suppose I have series of URLs like:

http://www.example.com/abcd1.html 
http://www.example.com/abcd2.html

Now what I want is, when some body try to access the URL

particular abcd1.html page should display but in browser address bar it should look like

http://www.example.com/abcd1
http://www.example.com/abcd2

I am using php as scripting and Apache web server. is not static, I get the file name from database.

Virat Gaywala - CSM
  • 657
  • 1
  • 8
  • 11

1 Answers1

0

Try a router such as this one, for example.

You can then route /something.html to /something or /any/path/you/want.

TPoy
  • 932
  • 1
  • 11
  • 17