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
web服务采用的是apache,已开启伪静态模块,.htaccess 用的是默认的
` Options -MultiViews -Indexes
RewriteEngine On # Handle Authorization Header RewriteCond %{HTTP:Authorization} . RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] # Redirect Trailing Slashes If Not A Folder... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} (.+)/$ RewriteRule ^ %1 [L,R=301] # Send Requests To Front Controller... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L]
参照操作手册已经完成 php artisan admin:publish
php artisan admin:install
执行完composer require dcat/laravel-admin:"2.*" -vvv
执行完php artisan admin:publish
执行完php artisan admin:install
数据库也自动建有数据
直接访问首页显示的是Laravel默认页面
但是访问/admin显示404错误,没有更改过路由
The text was updated successfully, but these errors were encountered:
我记得在 apache 里面,需要加上 public 访问,如:http://你的域名/public/admin 来访问
Sorry, something went wrong.
我猜apache配置文件的rewrite模块没取消注释
No branches or pull requests
Description:
web服务采用的是apache,已开启伪静态模块,.htaccess 用的是默认的
`
Options -MultiViews -Indexes
参照操作手册已经完成
php artisan admin:publish
php artisan admin:install
执行完composer require dcat/laravel-admin:"2.*" -vvv
执行完php artisan admin:publish
执行完php artisan admin:install
数据库也自动建有数据
直接访问首页显示的是Laravel默认页面
但是访问/admin显示404错误,没有更改过路由
The text was updated successfully, but these errors were encountered: