Lighttpd完整URL重写到路径

时间:2013-10-23 20:15:29

标签: webserver lighttpd

我需要将所有可能的请求重写到服务器的路径

示例:如果我输入https://wwww.myhost.com/#hi=random+text+1?stop=now

我需要重定向到:

http://myhost.com/

可以使用 url.rewrite

由于

1 个答案:

答案 0 :(得分:0)

你真正想要实现的目标是什么?您是否要隐藏网址,以便始终显示http://myhost.com。如果您有多个页面,我认为这是不可能的。

您是否尝试将所有内容重定向到例如index.php

    RewriteEngine on
    RewriteBase /
    RewriteCond  %{REQUEST_FILENAME} !-f
    RewriteCond  %{REQUEST_FILENAME} !-d
    RewriteRule  ^(.*)$ index.php?anything=$1 [QSA,L]

例如http://myhost.com/example/这样的处理方式就像请求http://myhost.com/index.php?anything=example

一样