Correct me if I'm wrong, but I think it is redundant to use this mod along with the html catalog. The advantage of this mod is not having to recompile all the time, but the advantage of the html catalog is less pressure on your site because the customer browses the html catalog and doesn't enter php until they checkout. Or am I missing something, and they both can coexist?
Also, do you have to do this process for each category or put them all in one file?
1) Use an .htaccess file to parse .html as php.
2) Create a category1.html
3) In category1.html put:
Code:
<?
$cat = "1";
include "./home.php";
?>
|