Apply asp-append-version in addition to static files in the wwwroot folder
environment
- Visual Studio
-
- Visual Studio 2019
- ASP.NET Core
-
- 3.1 (Razor page, MVC)
Static files placed outside the wwwroot folder do not reflect asp-append-version
app.UseStaticFiles
By specifying an additional StaticFileOptions
call to the method
Static files can also be placed in folders other than wwwroot.
However, for static files placed outside the wwwroot folder, link and script tags
asp-append-version
Setting the attribute does not add version information to the URL.
I'll give it a try. The files are arranged in the following configurations:
Startup.Configure
method to also publish the Areas/Site1/Content folder.
// wwwroot フォルダで静的ファイル参照を有効にする
app.UseStaticFiles();
// Site1 用の物理コンテンツフォルダと参照 URL を紐づける
app.UseStaticFiles(new StaticFileOptions()
{
FileProvider = new PhysicalFileProvider(Path.Combine(env.ContentRootPath, "Areas/Site1/Content")),
RequestPath = "/Site1",
});
The following index.cshtml
code has been added to . Each asp-append-version
is added.
<!-- ここから追加 -->
<!-- wwwroot のファイル -->
<img src="~/image/sample.png" asp-append-version="true" />
<!-- wwwroot 以外のファイル -->
<img src="~/site1/image/sample1.png" asp-append-version="true" />
<!-- ここからまで -->
When you run it, the image is displayed correctly.
However, if you look at the HTML of the page, you can see that the string is only expanded to the files placed in wwwroot.
Causes when asp-append-version is not reflected
It depends on the property that determines whether the asp-append-version env.WebRootFileProvider
is IFileProvider
reflected.
By default, the wwwroot PhysicalFileProvider
specified is set so that it is not reflected in other folders.
There is a class IFileProvider
that can have more than CompositeFileProvider
one
You can pack more than one here PhysicalFileProvider
and give it to env.WebRootFileProvider
.
Only a physical folder path can be passed to the last,
StaticFileOptions.RequestPath
It is not possible to specify more than one, so I do not think that it will be the intended action.
*
env.WebRootFileProvider
isStartup.Configure
received byIWebHostEnvironment env
method.
Inherit IFileProvider and create your own classes
ASP.NET fileProvider because it can't be supported by standard features in Core alone.
using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Primitives;
namespace Microsoft.Extensions.FileProviders
{
<summary>
wwwroot フォルダ以外のファイルで "asp-append-version”を有効にするための複数の <see cref="StaticFileOptions"/> を管理するファイルプロバイダです。
</summary>
class CompositeStaticFileOptionsProvider : IFileProvider
{
private readonly IFileProvider _webRootFileProvider;
private readonly IEnumerable<StaticFileOptions> _staticFileOptions;
<summary>
コンストラクタです。
</summary>
<param name="webRootFileProvider">
デフォルトの wwwroot が設定されている WebRootFileProvider を指定します。通常は env.WebRootFileProvider を指定してください。
これは追加した <see cref="StaticFileOptions"/> がヒットしなかった場合に使用するためです。
</param>
<param name="staticFileOptions">
追加した静的ファイルオプションの一覧です。
FileProvider と RequestPath が設定されている必要があります。
</param>
public CompositeStaticFileOptionsProvider(IFileProvider webRootFileProvider, IEnumerable<StaticFileOptions> staticFileOptions)
{
_webRootFileProvider = webRootFileProvider ?? throw new ArgumentNullException(nameof(webRootFileProvider));
_staticFileOptions = staticFileOptions;
}
<summary>
指定されたパスにあるディレクトリを列挙します(存在する場合)。
</summary>
<param name="subpath">ディレクトリを識別する相対パス。</param>
<returns>ディレクトリの内容を返します。</returns>
public IDirectoryContents GetDirectoryContents(string subpath)
{
var result = GetFileProvider(subpath);
return result.FileProvider.GetDirectoryContents(result.StaticFileRelativePath);
}
<summary>
指定されたパスでファイルを見つけます。
</summary>
<param name="subpath">ファイルを識別する相対パス。</param>
<returns>ファイル情報。 発信者はExistsプロパティを確認する必要があります。</returns>
public IFileInfo GetFileInfo(string subpath)
{
var result = GetFileProvider(subpath);
return result.FileProvider.GetFileInfo(result.StaticFileRelativePath);
}
<summary>
指定されたフィルターの Microsoft.Extensions.Primitives.IChangeToken を作成します。
</summary>
<param name="filter">監視するファイルまたはフォルダーを決定するために使用されるフィルター文字列。 例:**/*.cs、*.*、subFolder/**/*.cshtml。</param>
<returns>ファイル一致フィルターが追加、変更、または削除されたときに通知される Microsoft.Extensions.Primitives.IChangeToken。</returns>
public IChangeToken Watch(string filter)
{
var result = GetFileProvider(filter);
return result.FileProvider.Watch(result.StaticFileRelativePath);
}
<summary>
指定された相対 URL に含まれる <see cref="StaticFileOptions"/> を探し、その FileProvider と静的ファイルへの相対パスを返します。
見つからなかった場合は wwwroot を持つ FileProvider を返します。
</summary>
<param name="path">アクセスされたホスト名以降の相対 URL。</param>
<returns>検索された <see cref="StaticFileOptions"/> の FileProvider と RequestPath から静的ファイルへの相対パス。</returns>
private (IFileProvider FileProvider, string StaticFileRelativePath) GetFileProvider(string path)
{
if (_staticFileOptions != null)
{
foreach (var option in _staticFileOptions)
{
// 登録している RequestPath とアクセスされた URL の大文字小文字が異なる場合があるので OrdinalIgnoreCase を指定
if (path.StartsWith(option.RequestPath, StringComparison.OrdinalIgnoreCase))
{
return (option.FileProvider, path[option.RequestPath.Value.Length..]);
}
}
}
return (_webRootFileProvider, path);
}
}
}
Because it is long, I will not explain the details, but to explain briefly,
First, StaticFileOptions
I'll have all the list of that I created in this class.
I'll set this class env.WebRootFileProvider
to a property later.
Each method is called when accessed by a client, so search for StaticFileOptions
which static file you accessed based on the URL.
Returns the StaticFileOptions
relative path to the hit and static FileProvider
file. If staticFileOptions is not hit, the wwwroot setting is applied by returning the default FileProvider.
Returning the correct file information for each operation asp-append-version
will reflect the attribute.
By the way, this code can be anywhere.
Apply your own class (CompositeStaticFileOptionsProvider)
Startup.Configure
Let's fix it as follows:
As written, there is nothing to explain.
StaticFileOptions
I'm just summarizing them in an array.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
// 省略
app.UseHttpsRedirection();
// ここから修正
var staticOptions = new StaticFileOptions[]
{
// Site1 用の物理コンテンツフォルダと参照 URL を紐づける
new StaticFileOptions()
{
FileProvider = new PhysicalFileProvider(Path.Combine(env.ContentRootPath, "Areas/Site1/Content")),
RequestPath = "/Site1",
},
// 複数ある場合はこんな感じで追加
//new StaticFileOptions()
//{
// FileProvider = new PhysicalFileProvider(Path.Combine(env.ContentRootPath, "Areas/Site2/Content")),
// RequestPath = "/Site2",
//},
};
// wwwroot フォルダで静的ファイル参照を有効にする
app.UseStaticFiles();
// 追加したい StaticFileOptions
foreach (var option in staticOptions)
{
app.UseStaticFiles(option);
}
// StaticFileOptions を独自クラスでまとめて WebRootFileProvider にセットする
var compositeProvider = new CompositeStaticFileOptionsProvider(env.WebRootFileProvider, staticOptions);
env.WebRootFileProvider = compositeProvider;
// ここまで修正
app.UseRouting();
// 省略
}
If you run it now, you can see that the attribute is reflected in static files asp-append-version
placed in folders other than wwwroot.