Все мои URL для изображений и CSS или рендеринга с приложением в начале
/app/favicon.ico
/app/img/logo.png
/app/css/styles.css
Содержание страниц рендеринга нормально, только не изображения и CSS.
Мой web.config выглядит так, но, похоже, не помогает этим URL. Таким образом, все они в результате 404-х годов.
<rules>
<rule name="Rewrite requests to test.php"stopProcessing="true">
<match url="^test.php(.*)$" ignoreCase="false" />
<action type="Rewrite" url="app/webroot/test.php{R:1}" />
</rule>
<rule name="Imported Rule 4" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="app/index.php?url={R:1}" appendQueryString="true" />
</rule>
<rule name="Exclude direct access to webroot/*" stopProcessing="true">
<match url="^app/webroot/(.*)$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Rewrite routed access to assets(img, css, files, js, favicon)" stopProcessing="true">
<match url="^(img|css|files|js|favicon.ico)(.*)$" />
<action type="Rewrite" url="app/webroot/{R:1}{R:2}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{URL}" pattern="^app/webroot/" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="app/webroot/" />
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<action type="Rewrite" url="app/webroot/{R:1}" />
</rule>
</rules>
Полученные URL должны быть
/favicon.ico
/img/logo.png
/css/styles.css
Мое дерево каталогов на iis:
WWW
приложение
Webroot
@ADmad помог мне понять это. Оказывается, это не имеет ничего общего с web.config в IIS. Это не особенность CakePHP 3.0. Согласно CakePHP IRC, маршрутизация CakePHP 3.x и CakePHP 2.x абсолютно одинакова. Это просто странность IIS PHP.
Решение состоит в том, чтобы обновить базу App.base в вашем config / app.php
'App' => [
'namespace' => 'App',
'encoding' => 'UTF-8',
'base' => '', // default is false
'dir' => 'src',
'webroot' => 'webroot',
'wwwRoot' => WWW_ROOT,
//'baseUrl' => '/',
'fullBaseUrl' => false,
'imageBaseUrl' => 'img/',
'cssBaseUrl' => 'css/',
'jsBaseUrl' => 'js/',
'paths' => [
'plugins' => [ROOT . DS . 'plugins' . DS],
'templates' => [APP . 'Template' . DS],
'locales' => [APP . 'Locale' . DS],
],
],
@ADmad сказала, что причина была в том, что «из-за какого-то дурацкого торта не удается правильно определить саму базу :)»
Создайте файл web.config в корневой папке и вставьте следующие строки:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Exclude direct access to webroot/*"stopProcessing="true">
<match url="^webroot/(.*)$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Rewrite routed access to assets(img, css, files, js, favicon)"stopProcessing="true">
<match url="^(font|img|css|files|js|favicon.ico)(.*)$" />
<action type="Rewrite" url="webroot/{R:1}{R:2}"appendQueryString="false" />
</rule>
<rule name="Rewrite requested file/folder to index.php"stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php"appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>