我将这些代码放在我的主题文件“index.php”中,我的 php 为 5.3.8,已经将 .htaccess(附带 slim)放入 wordpress 文件夹,并且 options-permalink 已关闭。
.htaccess
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
索引.php
<?php get_header(); ?>
<?php
$app = new Slim();
$app->get('/', function ($test) {
echo "hello";
});
$app->run();
?>
<?php get_footer(); ?>
我运行此代码,页面为空白,chrome 控制台显示 505 错误