2017-04-21 2 views
1

ich ein Projekt mit diesem Pfad importiert haben: C:\wamp64\www\projectName\laravelLaravel/Public Umleitung auf localhost

Meine .htaccess zum Laravel/public/Ordner umleiten: RewriteEngine on RewriteCond %{REQUEST_URI} !^laravel/public RewriteRule ^(.*)$ laravel/public/$1 [L]

Und es war in Ordnung, ich hatte jus ein paar fehler mit der datenbank, aber da ich es behoben habe, verursacht es mir einige probleme, denn jetzt, wenn ich auf der gleichen url bin, leite es mich auf der wamp homepage um

So fand ich eine andere .htaccess auf dem weg/projectName/laravel/public aber ich weiß nicht, ob das mit dem anderen .htaccess interferiert, vielleicht?

` Optionen -MultiViews

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] 

`

Ich habe die rewrite_module auf Apache geprüft

Einstellung Und das einzige, was ich auf dem Protokollfehler von appache gefunden:

[Fri Apr 21 11:04:16.781901 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00428: Parent: child process 6444 exited with status 255 -- Restarting. [Fri Apr 21 11:04:16.822008 2017] [auth_digest:notice] [pid 5284:tid 572] AH01757: generating secret for digest authentication ... [Fri Apr 21 11:04:16.847181 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00455: Apache/2.4.23 (Win64) PHP/5.6.25 configured -- resuming normal operations [Fri Apr 21 11:04:16.847682 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00456: Apache Lounge VC14 Server built: Jul 1 2016 11:43:51 [Fri Apr 21 11:04:16.847682 2017] [core:notice] [pid 5284:tid 572] AH00094: Command line: 'c:\\wamp64\\bin\\apache\\apache2.4.23\\bin\\httpd.exe -d C:/wamp64/bin/apache/apache2.4.23' [Fri Apr 21 11:04:16.849534 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00418: Parent: Created child process 5104 [Fri Apr 21 11:04:17.208634 2017] [auth_digest:notice] [pid 5104:tid 452] AH01757: generating secret for digest authentication ... [Fri Apr 21 11:04:17.232829 2017] [mpm_winnt:notice] [pid 5104:tid 452] AH00354: Child: Starting 64 worker threads. [Fri Apr 21 11:04:18.311301 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00428: Parent: child process 5104 exited with status 255 -- Restarting. [Fri Apr 21 11:04:18.347397 2017] [auth_digest:notice] [pid 5284:tid 572] AH01757: generating secret for digest authentication ... [Fri Apr 21 11:04:18.370859 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00455: Apache/2.4.23 (Win64) PHP/5.6.25 configured -- resuming normal operations [Fri Apr 21 11:04:18.370859 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00456: Apache Lounge VC14 Server built: Jul 1 2016 11:43:51 [Fri Apr 21 11:04:18.370859 2017] [core:notice] [pid 5284:tid 572] AH00094: Command line: 'c:\\wamp64\\bin\\apache\\apache2.4.23\\bin\\httpd.exe -d C:/wamp64/bin/apache/apache2.4.23' [Fri Apr 21 11:04:18.373581 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00418: Parent: Created child process 4748 [Fri Apr 21 11:04:18.645510 2017] [auth_digest:notice] [pid 4748:tid 452] AH01757: generating secret for digest authentication ... [Fri Apr 21 11:04:18.670857 2017] [mpm_winnt:notice] [pid 4748:tid 452] AH00354: Child: Starting 64 worker threads. [Fri Apr 21 11:04:19.729942 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00428: Parent: child process 4748 exited with status 255 -- Restarting. [Fri Apr 21 11:04:19.763030 2017] [auth_digest:notice] [pid 5284:tid 572] AH01757: generating secret for digest authentication ... [Fri Apr 21 11:04:19.783880 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00455: Apache/2.4.23 (Win64) PHP/5.6.25 configured -- resuming normal operations [Fri Apr 21 11:04:19.783880 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00456: Apache Lounge VC14 Server built: Jul 1 2016 11:43:51 [Fri Apr 21 11:04:19.783880 2017] [core:notice] [pid 5284:tid 572] AH00094: Command line: 'c:\\wamp64\\bin\\apache\\apache2.4.23\\bin\\httpd.exe -d C:/wamp64/bin/apache/apache2.4.23' [Fri Apr 21 11:04:19.785731 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00418: Parent: Created child process 1008 [Fri Apr 21 11:04:20.041074 2017] [auth_digest:notice] [pid 1008:tid 420] AH01757: generating secret for digest authentication ... [Fri Apr 21 11:04:20.065001 2017] [mpm_winnt:notice] [pid 1008:tid 420] AH00354: Child: Starting 64 worker threads. [Fri Apr 21 11:04:21.135137 2017] [mpm_winnt:notice] [pid 5284:tid 572] AH00428: Parent: child process 1008 exited with status 255 -- Restarting. usw. ...

Kann mir jemand helfen? Ich bin ein wenig Noob :(

EDIT httpd-vhosts.conf:

<VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:\wamp64\www\hguitare\laravel\public" ServerName hguitare.dev ServerAlias www.hguitare ErrorLog "logs/hguitare-error.log" CustomLog "logs/hguitare-access.log" common <Directory "C:\wamp64\www\hguitare\laravel\public"> Options Indexes FollowSymLinks AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory> </VirtualHost>

+0

Haben Sie virtuelle Host für dieses Projekt eingestellt .. – Komal

+0

Nein, Was wird es für mich tun? –

+0

Hey simon versuchen, Host zu setzen und dann prüfen, ob der Fehler kommt oder nicht – Komal

Antwort

0

diese Schritte durchführen virtuellen Host (Laravel Projekt)

  1. Zum einstellen Dieser Pfad C: \ wamp \ bin \ Apache \ Apache2.4.9 \ conf \ extra \ httpd-vhosts.conf
  2. Ad d diese Einstellungen
<VirtualHost *:80> 
    ServerAdmin [email protected] 
    DocumentRoot "C:/wamp/www/projectName/public" 
    ServerName projectName.dev 
    ServerAlias www.projectName 
    ErrorLog "logs/projectName-error.log" 
    CustomLog "logs/projectName-access.log" common 
    <Directory "C:/wamp/www/projectName/public"> 
     Options Indexes FollowSymLinks 
     AllowOverride all 
     Order Deny,Allow 
     Deny from all 
     Allow from 127.0.0.1 
    </Directory> </VirtualHost> 
  1. öffnen Rechner von Pfad C-Datei: \ Windows \ System32 \ drivers \ etc \ hosts (als admin andere weise Sie kann diese Datei nicht bearbeiten)
  2. diese Zeile hinzufügen
127.0.0.1 localhost 
    127.0.0.1 projectName.dev 
  1. Letzter Schritt Ihre wamp neu starten und überprüfen (http://projectName.dev/)
+0

"Sie sind nicht berechtigt, auf diesen Server zuzugreifen." on 127.0.0.1 Aber ich bin nicht wie ich update httpd-vhosts.conf –

+0

Ich hatte den Inhalt dieser Datei auf meine Frage –

+0

Er verwendet 'apache2.4.23' so ändern Sie Ihre Antwort, um die gleiche Version zu verwenden Zahlen wie das OP verwendet und er kann nicht so verwirrt werden – RiggsFolly