htaccess - 子文件夹中的webapp不起作用

时间:2017-03-27 07:57:40

标签: .htaccess mod-rewrite

我在托管中的www.mypage.com这样的根文件夹中有自定义webapp,现在我需要在www.mypage.com/subfolder这样的子文件夹中移动它。

这是我的.httaccess:

<IfModule mod_rewrite.c>
  Options +FollowSymLinks
  Options -Indexes
  RewriteEngine On
  RewriteBase /
  RewriteRule ^([a-zA-Z-_]*)/?([a-zA-Z-_]*)?/?([a-zA-Z0-9-_]*)?/?$ index.php?controller=$1&action=$2&id=$3 [QSA,NC,L]
</IfModule>

我理解为了使其在子文件夹中工作,我需要将RewriteBase从/修改为/subfolder/subfolder/,但我无法使其正常工作。

我做错了什么?

0 个答案:

没有答案