我浏览了相关帖子,但似乎无法让我的应用程序正常运行。
我决定使用generator-angular-php 快速设置端到端应用程序。
当我使用grunt服务时,应用程序似乎按预期工作,所以我决定把它放在我的apache服务器上。我用grunt构建它,并将dist文件夹中的文件复制到我的文件夹中 /无功/网络//的public_html /
结构如下:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
第一个index.php包含
<?php
error_reporting(-1);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
date_default_timezone_set('UTC');
try {
// Initialize Composer autoloader
if (!file_exists($autoload = __DIR__ . '/vendor/autoload.php')) {
throw new \Exception('Composer dependencies not installed. Run `make install --directory app/api`');
}
require_once $autoload;
// Initialize Slim Framework
if (!class_exists('\\Slim\\Slim')) {
throw new \Exception(
'Missing Slim from Composer dependencies.'
. ' Ensure slim/slim is in composer.json and run `make update --directory app/api`'
);
}
// Run application
$app = new \Api\Application();
$app->run();
} catch (\Exception $e) {
if (isset($app)) {
$app->handleException($e);
} else {
http_response_code(500);
header('Content-Type: application/json');
echo json_encode(array(
'status' => 500,
'statusText' => 'Internal Server Error',
'description' => $e->getMessage(),
));
}
}
.htaccess#2看起来如下:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA]
第二个index.php包含php代码:
-Slim Framework and register its PSR-0 autoloader.
-Instantiate a Slim application
-Define the Slim application routes (get, post, put etc
在我的网站的网站启用文件中,我有:
<VirtualHost *:80>
ServerAdmin hanto899@myphpportfolio.com
ServerName myphpportfolio.com
ServerAlias www.myphpportfolio.com
DocumentRoot /var/www/myPhpPortfolio/public_html
ErrorLog /var/www/myPhpPortfolio/public_html/error.log
CustomLog /var/www/myPhpPortfolio/public_html/access.log combined
<Directory "/var/www/myPhpPortfolio/public_html">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
我启用了rewrite-mod。
然而,当我在浏览器中打开我的网站时,我得到了一个:
GET http://myphpportfolio.com/api/features 404 (Not Found)
回复:
{"status":404,"statusText":"Not Found","description":"Resource \/features using GET method does not exist."}
我没有以任何方式改变代码,因为它可以运行durig grunt serve,我猜它应该没有任何改变(?) 这给了我更多的白发,我没有想法......我错过了什么!
答案 0 :(得分:0)
检查复制的文件和所有权的权限。
当grunt构建并创建最终目录时,它可能会更改/ dist的输出文件的权限和可能的所有权。 chmod 755 -R你网站的html目录,可能会更改所有者(root?)。
此外,这些生成器有时被配置为推出多个构建版本....一个用于测试,一个用于实时托管。
例如,grunt测试可能会将图像输出到临时目录,而grunt构建输出到/ dist / images。