如何在不添加html的情况下打开网站中的网页?

时间:2015-02-24 05:14:11

标签: php web

我想在网络浏览器中打开一个网页

www.somesite.com/myPage.html

我自己创建了myPage.html,简单的html

我想通过

打开此页面
www.somesite.com/myPage

我已将myPage.html放入public_html

cpanel文件夹中

1 个答案:

答案 0 :(得分:1)

<强>选项1

将文件myPage.html保存在public_html

您需要在.htaccess中创建public_html并将其添加到文件中:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]

选项2

  1. 将文件夹调用myPage
  2. 将文件myPage.html重命名为index.html
  3. 将文件index.html移至myPage文件夹
  4. 注意: - 不要一次使用这两种方法。在使用.htacess

    之前,请从Option 2文件中删除所有数据