怎么感觉订阅之后打开网站都快了好多- -

JellyBool

这个是错觉吧。。。没有限制网速这一说,laravist 是没有的,我也不知道 laravel 能不能做这个

1965741954 回复 JellyBool

= =话说我昨天遇到一个好奇怪的问题,laravel在wamp环境下,访问localhost居然不会解析index.php,直接把index.php下载下来了。各种伪静态设置,httpd.conf设置都做了,找了2个多小时都解决不了,然后后来用php artisan serve,在localhost:8000下居然正常。。。这坑爹了- -

JellyBool 回复 1965741954

用 apache 的话,在确保正确配置 httpd.conf 下,也需要设置 public 目录下的 .htaccess 文件:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
1965741954 回复 JellyBool

httpd.conf

DocumentRoot  "D:/Program Files/phpStudy/WWW/laravel/public/"
<Directory />
    Options +Indexes +FollowSymLinks +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

.htaccess

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    Options +FollowSymLinks
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

依旧GG。。。
= =希望在vps上正常就行了