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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.