我有一些文件夹是这样的结构
测试>主要>页面>常规(在页面内我有我的 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]