donglin7979 2017-07-24 11:17
浏览 38
已采纳

Html文件无法在php目录脚本网站上运行

I have php web directory. I am trying to create sub folder with html template in it, but the issue is the server is showing following error"Apache Server at www.mydomain.com Port 80".

I have default empty .htaccess file.

This is the path where I have uploaded my html file.

http://www.mddir.com/movie/top-indian-movies/

Please help me to make this html file live.

  • 写回答

1条回答 默认 最新

  • donglue8180 2017-07-24 12:53
    关注

    showing following error: "Apache Server at www.mydomain.com Port 80".

    That is not an error, that is simply the directory listing when accessing the directory and the directory index document is not available.

    It would seem you don't have a directory index enabled (or it's not set for index.html).

    And I'm guessing you don't want to see a directory listing either.

    Try adding the following to your .htaccess file:

    # Disable directory listings
    Options -Indexes
    
    # Load index.html when requesting the bare directory
    DirectoryIndex index.html
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?