Jump to content

Page browsing without using $_GET?


ruddie

Recommended Posts

When I came onto this website, I just noticed that browser pages is basically done by adding: /forums and /tutorials and such, while I am now using $_GET['page'] which simply adds ?page="location" to my url.

 

I was wondering how they actually did this (since it is PHP code I can not just open check the code).

Link to comment
https://forums.phpfreaks.com/topic/224853-page-browsing-without-using-_get/
Share on other sites

in a .htaccess file put:

 

RewriteEngine on
RewriteBase /
RewriteRule ^([^/\.]+)/?$ ./index.php?page=$1 
RewriteRule ^([^/\.]+)?$ ./index.php?page=$1

 

This will turn

 

example.com/somepage and example.com/somepage/  into  example.com?page=somepage  but the user will never see the variable is named page.. you would still use $_GET['page'] to access the value of the variable.

 

to better understand how to make this work look up some regex rules.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.