如何查询用作http主机的字符串

时间:2014-02-20 19:56:08

标签: .htaccess

我想在url http://example.com/folder1/

下面显示

但是此网址使用http主机

并执行url是

http://example.com/?test=folder1

1 个答案:

答案 0 :(得分:0)

将此代码放入DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/?$ /?test=$1 [L,QSA]