时间:2024-01-11 21:06:01 | 来源:网站运营
时间:2024-01-11 21:06:01 来源:网站运营
laravel 怎么部署到万网的虚拟主机上?:-------16-12-29补充------<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} !^public RewriteRule ^(.*)$ public/$1 [L]</IfModule>
3.打开config/app.php'key' => env('APP_KEY', '...'), //32位字符串'cipher' => 'AES-256-CBC',
改为'key' => env('APP_KEY', '...'),//16位字符串'cipher' => 'AES-128-CBC',
由于万网不支持'AES-256-CBC'所以用128位加密,256位加密使用32位字符串,128位使用16位字符串 # Redirect Trailing Slashes If Not A Folder... RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)/$ /$1 [L,R=301]
5.好了,我的使用过程中就没什么问题了关键词:虚拟,主机,部署