查看文件夹而不是public_html

时间:2012-11-21 18:44:34

标签: php .htaccess

我如何“重定向”我的页面,在访问我的域时显示/ v4-beta /而不是./?

不仅可以重定向,还可以在域名中显示v4-beta的内容,而不是www.domain.com/v4-beta?但显示www.domain.com但所有内容均来自v4-beta?

3 个答案:

答案 0 :(得分:1)

一个简单的解决方案是include顶级索引文件中的子文件夹索引文件。

的public_html / index.php的:

<?php
include("v4-beta/index.php");
?>

答案 1 :(得分:0)

您正在寻找apache http server附带的rewriting module

RewriteEngine on
RewriteCond %{REQUEST_URI} !^/v4-beta/
RewriteRule ^(.*)$ /v4-beta/$1 [L]

必须首先加载模块。然后,您可以在邮件服务器配置内或所谓的.htaccess文件中使用这些命令。 frist选项是首选。

答案 2 :(得分:0)

Htaccess:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com$
RewriteCond %{REQUEST_URI} !^/v4-beta/
RewriteRule (.*) /v4-beta/$1