MyBB.de Forum
Geheime Umleitungen mit forumdisplay.php möglich? - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-52.html)
+---- Thema: Geheime Umleitungen mit forumdisplay.php möglich? (/thread-11061.html)



Geheime Umleitungen mit forumdisplay.php möglich? - querschlaeger - 24.09.2008

Hallo,

gerade habe ich mal in den Google Webmaster Tools geschaut, welche Links Google eigentlich von meinem Forum sieht / nicht sieht (per robots.txt).

Und da tauchte dann ein Link mit forumdisplay.php?fid=-3 auf.

Neugirig habe ich mal draufgeklickt und bin im User CP gelandet - aber geht das denn?

Man kann es ja hier im Forum testen:

https://www.mybb.de/forum/forumdisplay.php?fid=-3

führt zum User CP.

https://www.mybb.de/forum/forumdisplay.php?fid=-1

führt zum Index.

https://www.mybb.de/forum/forumdisplay.php?fid=-5

führt zur Online-Seite.

usw. (probiert selbst).

Sind diese Umleitungen gewollt?!


RE: Geheime Umleitungen mit forumdisplay.php möglich? - StefanT - 24.09.2008

Die sind sicher gewollte:
PHP-Code:
    switch($fid)
    {
        case 
"-1":
            
$location "index.php";
            break;
        case 
"-2":
            
$location "search.php";
            break;
        case 
"-3":
            
$location "usercp.php";
            break;
        case 
"-4":
            
$location "private.php";
            break;
        case 
"-5":
            
$location "online.php";
            break;
    } 



RE: Geheime Umleitungen mit forumdisplay.php möglich? - Michael - 24.09.2008

Diese Links werden aufgerufen, wenn du eine Seite im Dropdown-Menü unten im Forum hinter "Gehe zu:" auswählst.