-2

HOw to make this url:

http://localhost/TrustyWrenchVersionOOP/?page=home

to this url:

http://localhost/TrustyWrenchVersionOOP/home
user3783243
  • 5,368
  • 5
  • 22
  • 41
  • 2
    By implementing rewrite rules in your http server. You will find many examples on google and here on SO. – arkascha Dec 19 '18 at 16:22

1 Answers1

0

Rewrite your .htaccess rules like so. This is what I use and it works fine. There's different ways to achieve this, a quick google search probably would've yielded quicker results though

RewriteEngine on
RewriteBase /

RewriteRule ^([a-zA-Z0-9]+)$ index.php?page=$1
RewriteRule ^([a-zA-Z0-9]+)/$ index.php?page=$1
Isaac
  • 784
  • 10
  • 23