That's exactly what I did, after getting down the varibles in a url, I stored all of my content in a single directory, every thing in txt files. this would probably be the best way for you to go.
Like jburfield said, just format your page different, and include the story/content in it. This might help you;
Make a file called "pfriendly.php" with this code in it:
<html>
<body>
<?php
$print = $_GET['print'];
if (($print == story1) || ($print == "content/story1.txt")) { include 'files/story.txt'; }
?>
</html>
</body>
Then you could use:
http://www.yoursite.com/pfriendly.php?print=story1
It would be nothing but harmless text. Assuming "story1.txt" didn't have any image tags inside it obviously. Hope this helps.