If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
What line? you quoted twopeople talking about mod rewrite. Google for mod rewrite and there are a crapload of tutorials out there or ask a useful question. And BTW: from midnight till 4am you're prolly not gonna get help, no need to double post.
the only way I can think of to do it with another host is mod rewrite and i'd looking something like this:
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteRule (.*).html$ process.php
That would make it so anything.html would be redirected to process.php and then I would use process.php to display the proper content, an example for articles would be http://www.yourdomain.com/articles_g...uys_yahoo.html and then i'd make it so my php script took the part before the first _ and made it the database and then the rest is the title.
Comment