我正在laravel 5.7中实现站点地图,但是我要在刀片文件中包含一个文件,但是XSL文件不包含
我要包含的文件:xsl / gss.xsl
在我的sitemap.blade.php文件之下
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="{{ URL::asset('xsl/gss.xsl')}}"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
@foreach($urls as $url)
<sitemap>
<loc>
{{$url['loc']}}
</loc>
@if(isset($url['lastmod']))
<lastmod>{{$url['lastmod']}}</lastmod>
@endif
</sitemap>
<br>
@endforeach
</sitemapindex>
所以任何人都对laravel 5.7中的站点地图有个想法?