Code:
GT-Downloads2
<?php
$urlin = array(
"'(?<!/)modules.php\?name=Downloads&cid=([0-9]*)&min=([0-9]*)&orderby=([a-zA-Z]*)'",
"'(?<!/)modules.php\?name=Downloads&cid=([0-9]*)&orderby=([a-zA-Z]*)'",
"'(?<!/)modules.php\?name=Downloads&cid=([0-9]*)'",
"'(?<!/)modules.php\?name=Downloads&op=MostPopular&ratenum=([0-9]*)&ratetype=(percent|num)'",
"'(?<!/)modules.php\?name=Downloads&op=MostPopular'",
"'(?<!/)modules.php\?name=Downloads&op=NewDownloads&newdownloadshowdays=([0-9]*)'",
"'(?<!/)modules.php\?name=Downloads&op=NewDownloadsDate&selectdate=([0-9]*)'",
"'(?<!/)modules.php\?name=Downloads&op=NewDownloads'",
"'(?<!/)modules.php\?name=Downloads&op=brokendownload&lid=([0-9]*)'",
"'(?<!/)modules.php\?name=Downloads&op=getit&lid=([0-9]*)'",
"'(?<!/)modules.php\?name=Downloads&op=modifydownloadrequest&lid=([0-9]*)'",
"'(?<!/)modules.php\?name=Downloads&op=search&query=([a-zA-Z0-9_-]*)&min=([0-9]*)&orderby=([a-zA-Z]*)'",
"'(?<!/)modules.php\?name=Downloads&op=search&query=([a-zA-Z0-9_-]*)&orderby=([a-zA-Z]*)'",
"'(?<!/)modules.php\?name=Downloads(?!&)'",
"'(?<!/)modules.php\?name=Submit_Downloads'"
);
$urlout = array(
"Downloads-cat\\1-\\2-order\\3.html",
"Downloads-cat\\1-order\\2.html",
"Downloads-cat\\1.html",
"Downloads-rate\\1-\\2.html",
"Downloads-mostpop.html",
"Downloads-shownew\\1.html",
"Downloads-new-\\1.html",
"Downloads-new.html",
"Downloads-broken\\1.html",
"Downloads-\\1.html",
"Downloads-mod\\1.html",
"Downloads-search-\\1-\\2-order\\3.html",
"Downloads-search-\\1-order\\2.html",
"Downloads.html",
"submit_downloads.html"
);
?>
|