我已經導入了一個項目,這個路徑:C:\wamp64\www\projectName\laravel
Laravel /公共重定向到本地主機
我的.htaccess重定向到laravel /大衆/文件夾: RewriteEngine on RewriteCond %{REQUEST_URI} !^laravel/public RewriteRule ^(.*)$ laravel/public/$1 [L]
它是好的,我有絕對一些數據庫的錯誤,但由於我已經修復它,它給我帶來一些麻煩,因爲現在當我在相同的網址,它重定向我在wamp首頁
所以我發現路徑上的另一個.htaccess/projectName/laravel/public但我不知道是否干擾其他.htaccess,也許?
` 選項-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]
`
我檢查Apache的設置
,我發現的唯一的事情是對的appache日誌錯誤rewrite_module:
[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.
等...
任何人都可以幫助我嗎?我有點小白:(
編輯 的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>
你設置虛擬主機爲這個項目.. – Komal
沒有,會是什麼,我做什麼? –
嗨西蒙嘗試設置主機,然後檢查錯誤是否正在進行 – Komal