我的共享托管服务器上有以下文件夹树:
www.somesite.com
|
|_ public_html (document folder)
|_ .htaccess (Apache file)
|_ index.html (page shown by server now when someone looks for www.somesite.com)
|
|_ site_editor (folder)
| |_login.html (site editor control panel)
| |_file1.php
| |_file2.php
| |_ ...
|
|_ website (folder)
|_ index.html (website HOME PAGE)
|_ page1.html
|_ page2.html
|_ etc.
现在,当有人查找 www.somesite.com 时,网络服务器会在 public_html 文件夹中查找 index.html。
我希望网络服务器
website/index.html
在有人查找 www.somesite.com 时显示,我希望他的浏览器栏只显示www.somesite.com/index.html
而不显示www.somesite.com/website/index.html
我还希望网络服务器在有人查找时显示
site_editor/login.html
www.somesite.com/site_editor/
是否可以通过以某种方式设置 .htaccess 文件来完成这两项任务???
谢谢!