OZONE Asylum
Forums
OZONE
Switching from ASP to PHP...
This page's ID:
27705
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
well... the relevant part of the .htaccess reads like this [code]RewriteEngine On RewriteRule ^(/Forum)([0-9]+)(/HTML/)([0-9]+)(.html) /lookup/asylumforum.php?forum=$1&thread=$2 [L] RewriteRule ^(/Archives/Archive-)([0-9]+)(/HTML/)(.+) /lookup/asylumarchive.php?archive=$2&thread=$4 [L][/code] so you see, I had the advantage of having regexable urls.. Now, the lookup php is nothing special... it basically has a serialized array at it's disposale that I built during the import of the old text file based data into the database saying 'that text file went into that row (id) in the database' [code]<?php function notFound() { header("Location: /search"); echo "404 - Not Found - you'll be redirected shortly"; // NN4 requires that we output something... die(); } if (!(is_numeric(@$_GET['archive']) && isset($_GET["thread"]))) notFound(); $strFilename = dirname(__FILE__) . '/archive.'. $_GET['archive']. '.dat'; if (file_exists($strFilename)) { if ($fh = fopen($strFilename,'rb')) { $t = fread($fh,filesize($strFilename)); fclose($fh); $threads = unserialize($t); $threadName = $_GET["thread"]. '.cgi'; if (!isset($threads[$threadName])) notFound(); else { header("HTTP/1.1 301 Moved Permanently"); header("Location: /{$threads[$threadName]}"); header("Connection: close"); die(); } } else notFound(); } notFound(); ?>[/code] Of course, you could also replace the 404 handler, and do some funky stuff there to refind whatever the user was looking for, and then issue a 301... so long, ->Tyberius Prime
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »