This commit is contained in:
Philipp Hagemeister 2013-05-10 02:09:39 +02:00
parent 49698bfaa3
commit d929dd31d1
2 changed files with 5 additions and 0 deletions

2
.htaccess Normal file
View File

@ -0,0 +1,2 @@
RewriteEngine On
RewriteRule ^ip/?$ ip.php

3
ip.php Normal file
View File

@ -0,0 +1,3 @@
<?php
header('Content-Type: text/plain');
echo $_SERVER['REMOTE_ADDR'];