我的index.php在公共文件夹中,在我的.htaccess文件中,我说重写基础是公共目录。但是当我打开cms.test时,它给了我cms文件夹..对于使用索引php,我仍然需要去公共文件夹..
这是我的.htaccess文件
i=1
我该如何解决这个问题?
答案 0 :(得分:-2)
将您的公用文件夹设置为根目录
Options -MultiViews
RewriteEngine On
RewriteBase /var/www/cms/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA]
将您的公用文件夹设置为根目录