我製作了這個頁面,它在本地開發時正常加載,但是當我試圖在服務器上訪問它時,我有一個錯誤500,有人可以幫我嗎?錯誤500,不在本地,但在服務器
我已經抹去我的.htaccess,看着在日誌中,我有沒有什麼有趣的
<?php
/**
* Template Name: Actus
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
*/
get_header('other'); ?>
<section id ="page-title" class="col-md-12">
<div class="container">
<div class="container">
<header class="row extra-bottom-padding">
<div class="section_title col-lg-12 col-sm-12 col-sm-12 top-buffer">
<h1 class="title">Actus</h1>
<hr class="divider_blue">
</div>
</header>
<?
$args = array("posts_per_page" => "12", "category_name" => "actus, cest-fait");
$the_query = new WP_Query ($args);
$x = 1;
foreach ($args as $arg)
if($x % 4 == 0) echo '<div class="row">';
while ($the_query->have_posts()) : $the_query->the_post();
?>
<div class="col-md-4 col-lg-4 col-sm-6 col-xs-12">
<div class="le_post_entier">
<? the_post_thumbnail('actus'); ?>
<div class="col-md-12 postbody">
<div class="col-md-12 post-title">
<? the_title(); ?>
</div>
</div>
<a class="cta" href="#" style='color:#39c8d8; font-weight:bold;'>DÉCOUVRIR →</a>
</div>
</div>
<?php
endwhile; ?><?
$x++;
if($x % 4 == 0) echo '</div>';
?>
</div>
</section>
添加
PHP請檢查文件權限以及您的FTP客戶端中的文件的用戶 –
檢查服務器上的錯誤日誌 –