我试图在apache上启用mod_rewrite,因为我将一个站点迁移到了我的localhost。 现在突然间apache不再启动了。 我在错误日志中遇到了这些错误:
[Mon Nov 09 16:44:07.920714 2015] [mpm_winnt:notice] [pid 7660:tid 660] AH00422: Parent: Received shutdown signal -- Shutting down the server.
[Mon Nov 09 16:44:09.922784 2015] [mpm_winnt:notice] [pid 10456:tid 592] AH00364: Child: All worker threads have exited.
[Mon Nov 09 16:44:10.013848 2015] [mpm_winnt:notice] [pid 7660:tid 660] AH00430: Parent: Child process 10456 exited successfully.
如果有人可以帮助我,那么在这里做什么就会很糟糕。
答案 0 :(得分:0)
替换<% if @comments %>
<span class="results-number color-aqua-show">Comments</span>
<% @comments.each do |comment| %>
<p class="comments">
<i class="color-green fa fa-user ride-i"></i>
<%= comment.user.name %>: <%= time_ago_in_words(comment.created_at).capitalize %> ago
</p>
<p>
<i class="color-aqua fa fa-comment ride-i"></i>
<%= comment.body %>
</p>
<div class="bottom-breaker"></div>
<% end %>
<% else %>
<span class="results-number color-aqua-show">Be the first to comment!</span>
<% end %>
文件的此部分,它是所有apache模块的默认状态
<div class="container s-results margin-bottom-50">
<div class="row">
<div class="col-md-9">
<%= render partial: 'comments/show' %>
<%= render partial: 'comments/form' %>
</div>
</div>
</div>
然后重启WAMPServer。
激活apache模块时,请使用wampmanager菜单
httpd.conf
然后使用鼠标向上和向下滚动,直到找到要激活或停用的模块,然后单击该模块。
WAMPServer将在此菜单中每次单击后重新启动Apache,因此请稍等一下将图标设置为橙色,然后再将其设置为绿色。