Who can tell me some information about this site?

Discussion in 'PHP' started by Forumdirectory, Jul 9, 2007.

  1. #1
    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
     
    Forumdirectory, Jul 9, 2007 IP
  2. adamjthompson

    adamjthompson Well-Known Member

    Messages:
    1,242
    Likes Received:
    59
    Best Answers:
    0
    Trophy Points:
    125
    #2
    It looks like a custom (proprietary) script to me.
     
    adamjthompson, Jul 9, 2007 IP
  3. kajol

    kajol Well-Known Member

    Messages:
    523
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #3
    If it runs on apache, apache made that magic
     
    kajol, Jul 9, 2007 IP
  4. live-cms_com

    live-cms_com Notable Member

    Messages:
    3,128
    Likes Received:
    112
    Best Answers:
    0
    Trophy Points:
    205
    Digital Goods:
    1
    #4
    He could be displaying rows from a database and using htaccess to make them seem like .html files.
     
    live-cms_com, Jul 9, 2007 IP
  5. ProgrammersTalk

    ProgrammersTalk Peon

    Messages:
    684
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I don't really get it... :-/ somehow...
    probably you're talking about htaccess explained by live-cms
     
    ProgrammersTalk, Jul 9, 2007 IP
  6. Cloudberries

    Cloudberries Peon

    Messages:
    74
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #6
    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.
     
    Cloudberries, Jul 10, 2007 IP
  7. jalte

    jalte Peon

    Messages:
    51
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Sometime, using Netcraft's tool might provide you some useful information.
     
    jalte, Jul 10, 2007 IP