1

How to hide php,html extension in address bar.i have htdocs folder. in htdocs folder had index.php file and folders.i want to show in address bar like this:
'index.php?page=exams' is possible
can i add any code in my exsting files?

Naveen Golla
  • 51
  • 1
  • 10

1 Answers1

0

To hide all file extensions, You can use the following line in htaccess :

Options +Multiviews

This will let you access /index.php as /index,,

Amit Verma
  • 40,709
  • 21
  • 93
  • 115