forked from mgarciaisaia/faqoperativos-links
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
33 lines (32 loc) · 962 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<title>[email protected]</title>
<style>tr:nth-child(even){ background-color: #DDD; }</style>
</head>
<body>
<h1>[email protected]</h1>
<h4>Porque el CSS es muy 2000's</h4>
Las URLs de la tabla redirigen a sus destinos. Cualquiera de ellas puede usarse accediendo a <b>http://faq.utn.so/<i>${URL}</i></b>.<br />
Las redirecciones válidas <a href="https://github.com/sisoputnfrba/faqoperativos-links">se versionan en GitHub</a>. Los pull requests son bienvenidos.
<table>
<tr>
<th>URL</th>
<th>Destino</th>
</tr>
<?php
$archivo = file(".htaccess");
foreach($archivo as $line_number => $line) {
if(strpos($line, '#') === FALSE) {
$parts = explode(' ', $line);
if($parts[0] == "Redirect" && $parts[1] == "302") { ?>
<tr>
<td><a href="<?php echo $parts[3]; ?>"><?php echo $parts[2]; ?></a></td>
<td><?php echo $parts[3]; ?></td>
</tr><?php
}
}
}
?>
</table>
</body>
</html>