site:icarde dot com I find so many .html file,but I want to know how to get these? I can't find any program file. which program,asp ,or php? thanks
Using .htaccess rewrite rules, you can make any URL appear in the form of any other. This is most commonly used to get rid of the messy query strings after most website addresses (look at the address bar for this site for an example of this) Using code like rewriterule ^page-([0-9]+)\.htm$ http://www.website.com/showpage.php?page=$1 Code (markup): This way, you can write an address like http://www.website.com/showpage.php?page=98765 as http://www.website.com/page-98765.html Seems like there's a million billion .html files, but not really - there's just one, "showpage.php" Also, as for the question PHP or ASP? - using this method completely hides the underlying technology. As far as I know, there's no way to determine if the files are written in PHP, ASP, Perl or whatever else you might be using.