我的.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
或点击刷新它会带我到主域。
答案 0 :(得分:0)
在app/.htaccess
中使用此代码:
RewriteEngine On
RewriteRule ^index\.php$ - [L,NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]