我是新手。所以我遇到了一个laravel应用程序的问题。我可以访问任何网址,例如www.test.com/something,但浏览器返回"此网页不可用 ERR_CONNECTION_RESET"我试图打开www.test.com/或www.test.com/index.php
的任何时候我正在使用Wamp server 2.5
httpd-vhosts.conf文件
<VirtualHost *:80>
DocumentRoot "c:/wamp/www/test/public"
ServerName test.com
</VirtualHost>
的.htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
在routes.php中找到了这一行
Route::get('/', 'PagesController@index');
LoadModule rewrite_module modules / mod_rewrite.so已取消注释。 当我插入像
这样的东西时echo "test"; exit;
在index.php的最开头,它工作正常,并显示消息。 诀窍是具有相同设置的另一个项目正常工作。 有什么想法吗?
编辑:问题出在BLADE评论中,如{{ - smthg - }}。通过替换普通的html评论来解决
答案 0 :(得分:0)
您需要告诉您的计算机您的服务器上托管了test.com域,您可以将其添加到主机文件中