所以我尝试了.htaccess的两个版本,在项目创建中附带的版本和文档中的版本。我目前正在使用文档中的那个:
True
我的虚拟主机设置如下:
@newthread
def foo(new_thread=False)
# Do stuff...
foo() # Runs normally
foo(new_thread=True) # Runs in new thread
然而,当我去projectflyer.mydomain.com/some/route时,我得到了404.任何想法?是的我可以去基本网址。
答案 0 :(得分:0)
我通过将其添加到我的virtualhost .conf文件中解决了这个问题:
Private Sub Confirm1_Click()
Dim Voorspellen As Worksheet
Set Voorspellen = ThisWorkbook.Sheets("Poisson")
Voorspellen.Range("B5") = CDate(DatumLijn1_txt.Text)
Voorspellen.Range("C5") = TimeValue(UurLijn1_txt.Text)
Voorspellen.Range("F5") = PredictorIngeven.cmoThuisLijn1
Voorspellen.Range("G5") = PredictorIngeven.cmoAwayLijn1
Voorspellen.Range("G5") = Val(PredictorIngeven.HomeOddsLijn1_txt.Text)
Voorspellen.Range("H5") = Val(PredictorIngeven.AwayOddsLijn1_txt.Text)
End Sub
感谢http://laravel.io/forum/09-15-2015-removing-indexphp-from-url-laravel-5116的回答