我试图制作一个php refferall系统,我目前的一些代码如下。但是,当我去网址时,它说找不到页面?有没有办法避免这种情况。
<?php
if (substr($_GET['page'], 0, 9) === 'referall/')
{
//Heres where it says page not found
$ref = substr( $url, strrpos( $_GET['page'], '/' )+1 );
//So i go to say http://example.com/referall/Me and it says not found
//The get ['page'] is the / of the website like http://example.com/index
}
switch ($_GET['page'])
{
case "login": { //Index page }
}
?>
答案 0 :(得分:0)
如果您想实现这一目标,则无法以您正在使用的方式使用您的网址:
example.com/referall/Me
因为GET参数没有传递给你的代码 而是使用此URL:
example.com?page=referall&person=Me
并且它应该工作。
如果您仍然希望以您想象的方式做到这一点,请考虑使用一些可以让您更轻松的框架,其中有很多,我个人推荐Codeigniter