【发布时间】:2014-07-15 10:32:25
【问题描述】:
我正在使用 php 和 apache 服务器,我想将 sites/all/themes/chap2014/fpd/gift.php 重写为 fdp/gift 和 sites/all/themes/chap2014/fpd/another.php fdp/another
正是我想要这样做
将sites/all/themes/chap2014/fpd/*.php重写为fpd/*
启用重写模式,我在.htacess 文件中尝试以下代码。
RewriteEngine on
RewriteRule ^fpd/?$ sites/all/themes/chap2014/fpd/$1.php
但什么也没发生,实现这一目标的正确方法是什么?
感谢任何帮助,
【问题讨论】:
标签: php apache .htaccess mod-rewrite url-rewriting