我不知道这样的事情是否可行,但让我们试一试。在过去(三年多以前),我在一个MVC教程中开始了解这样的解决方案(不知道它是怎么回事)。
目录结构
我想做的是
用户访问http://www.mysite.com/a/b/c/
时,将所有请求重定向到/public/index.php
页面。即,所有网站请求都将通过/public/index.php
页面,但images/
中的js/
,css/
和public/
目录除外。
此外,http://www.mysite.com/includes/
会重定向到index.php
页面,并includes/
为$query
。
Index.php页面
<?php
// get init file from webroot directory, which will load all required php files.
define ('ROOT', dirname(dirname(__FILE__)));
require_once (ROOT . 'init.php');
// get query from url (here, $query = "a/b/c/")
if(isset($_GET['q'])) {
$query = $_GET['q'];
}
// insert images, css etc. resource
echo "<img src='http://www.mysite.com/images/foo.jpg' />";
echo "<script src='http://www.mysite.com/js/bar.js'></script>";
?>
这对于使用网络托管的用户非常有用,因为它不提供对webroot的一步升级目录。
修改
好的,我找到了这个概念的网站。请参见根目录和公共目录中使用的两个.htaccess文件。 Link to MVC tutorial
答案 0 :(得分:3)
我认为.htaccess在WebRoot
。
要重写所有请求,只需使用RewriteRule
即可。如果要排除某些路径,请使用一个或多个RewriteCond
RewriteEngine on
RewriteCond %{REQUEST_URI} !/images/
RewriteCond %{REQUEST_URI} !/css/
RewriteCond %{REQUEST_URI} !/js/
RewriteCond %{REQUEST_URI} !/public/index\.php
RewriteRule .* public/index.php?q=$0 [L,QSA]
RewriteRule ^images/.+ public/$0 [L]
RewriteRule ^js/.+ public/$0 [L]
RewriteRule ^css/.+ public/$0 [L]
标志QSA
将任何其他现有查询字符串附加为index.php
的参数。如果您不想附加任何现有的查询字符串,只需将QSA
标记保留。
如果您希望客户端可以看到重写,则必须将R
标记添加到RewriteRule
,即[R,L,QSA]
或[R,L]
。
答案 1 :(得分:0)
您可以使用其他技巧,您的网页不会重定向到其他网页,但您会限制其他用户查看目录索引
Options -Indexes
在.htaccess
文件中添加此文本,它将生成403错误(禁止)