This is more of a regex then PHP question...
I need to add a redirect line into .htaccess to load proper PHP page when the link looks like this:
domain.com/story/someStoryCode
RewriteRule (/story/.*)$ include/text/story_page.inc.php?story=$1 [NC,L]
Story code could be different length.
Am I on the right track? I think I'm missing something.