We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我在根目录 配置public
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} !^/public/ RewriteRule ^(.*)$ /public/$1 [L] </IfModule>
然后用仓库里的 /public/.htaccess 文件报错, 提示 你所浏览的页面暂时无法访问 找了一圈答案 我就改了 /public/.htaccess 就成功了
/public/.htaccess
你所浏览的页面暂时无法访问
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L] 改为 RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
是我的配置有问题吗
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我在根目录 配置public
然后用仓库里的
/public/.htaccess
文件报错, 提示你所浏览的页面暂时无法访问
找了一圈答案
我就改了
/public/.htaccess
就成功了是我的配置有问题吗
The text was updated successfully, but these errors were encountered: