这里我试图做的是:
- domain is thinkingmonkey.me
- domain has 127.0.0.1 as IP addr
- mod_alias is installed.
我有一份称为<代码>directories.conf的汇辑。 我的组合都与名录有关。
My directories.conf
——
Alias /runs /xhprof/xhprof_html
<Directory /mysite/xhprof/xhprof_html>
Order allow,deny
Allow from all
AllowOverride All
</Directory>
/mysite/xhprof/xhprof_html/.htaccess
。 我有:
RewriteEngine on
RewriteBase /runs
RewriteRule .* index.php
我试图这样做的是,根据<代码>/Msite/xhprof/xhprof_html/至index.php
提出任何要求。
当我请求<条码>思考mon骑士.me/runs时,没有发现闪lash。 页: 1
So, I infer that RewriteBase
is not working.
What am I doing wrong?