.htaccess子文件夹问题

时间:2016-11-06 13:26:48

标签: .htaccess

我的.htaccess遇到了一些麻烦。首先,我创建了一个子文件夹,然后我将这个子文件夹设为root用户:

RewriteEngine On
RewriteRule ^app/(.*)$ $1
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

到目前为止一直很好,问题是我要求的时候:

  

mysite.com/subfolder/page

或点击刷新它会带我到主域。

1 个答案:

答案 0 :(得分:0)

app/.htaccess中使用此代码:

RewriteEngine On

RewriteRule ^index\.php$ - [L,NC]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]