[Solved] Link with / and $_GET PHP [closed]


If I understand the question correctly, this can be done with something like this

You can use Apache mod_rewrite to load subpages dynamically, for example:

RewriteEngine on
RewriteRule ^website/index.php$ website/index.php?id=$1

This would be in an .htaccess at your root directory.

Hope I helped! -CM

6

solved Link with / and $_GET PHP [closed]