我想知道是否可以将我的域指向一个位于根目录中的两个文件夹的目录。
关键是,我通知将在内容区域显示的页面变量,如下所示:
www.dominio.com.br/index.php?c=products/list (以这种方式,效果很好)
我想通过以下方式访问此路径: www.dominio.com.br/products/list
这是我的结构......
的public_html
.htaccess
index.php
**products**
**list.php** <-- My desired folder.
customers
list.php <-- My desired folder.
new.php
我需要一个.htaccess代码,用于在变量中使用子目录文件夹读取此URL。现在,我可以在index.php所在的文件夹中使用该文件时工作。
我希望这一切都有道理。
感谢。
答案 0 :(得分:0)
如果
www.dominio.com.br/index.php?c=products/list
适合您,您可以使用重写规则将“虚拟”文件夹路径映射到现有页面:
RewriteEngine On
RewriteRule ^products/list$ index.php?c=products/list