0

我有一些文件夹是这样的结构

测试>主要>页面>常规(在页面内我有我的 index.php、contact.php 等)

目前我的网址看起来像这样

www.test.com/test/main/pages/general.index.php

我怎样才能重写这个,这样我就可以把所有的文件夹都剪掉,然后显示

www.test.com/index.php

我已经做好了

RewriteEngine on

AuthUserFile "/home/amytesting/.htpasswds/public_html/passwd"
AuthName "root"
AuthType Basic
require valid-user
Options -Indexes

RewriteCond %{HTTP_HOST} ^test\.com [OR]
RewriteCond %{HTTP_HOST} ^www\.test\.com
RewriteRule ^/?$ "http\:\/\/test\.com/\ " [R=301,L]
4

1 回答 1

1

你可以试试这个简单的 htaccess 代码:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.test.com$
RewriteRule ^contact$ http://contactx.test.com/contactX/contact-question.cfm
于 2013-07-18T21:23:28.430 回答