_sitemap: Missing / in sitemap links
This commit is contained in:
parent
8159f09088
commit
6a138075fb
8
qsgen2
8
qsgen2
@ -951,7 +951,7 @@ function _sitemap() {
|
|||||||
|
|
||||||
local -a xml_files=([a-z]*.xml(.))
|
local -a xml_files=([a-z]*.xml(.))
|
||||||
for file in "${xml_files[@]}"; do
|
for file in "${xml_files[@]}"; do
|
||||||
[[ $file != *sitemap.xml* ]] && xml_files+=("$file")
|
[[ $file != *sitemap.* ]] && xml_files+=("$file")
|
||||||
done
|
done
|
||||||
|
|
||||||
# Start of the XML file for BLOGS
|
# Start of the XML file for BLOGS
|
||||||
@ -968,7 +968,7 @@ function _sitemap() {
|
|||||||
for file in "${blog_files[@]}"
|
for file in "${blog_files[@]}"
|
||||||
do
|
do
|
||||||
# Remove www_root from the path and prepend site_url
|
# Remove www_root from the path and prepend site_url
|
||||||
local url="${site_url}${file#$www_root}"
|
local url="${site_url}/${file#$www_root}"
|
||||||
local lastmod=$(stat -c %y "${file}" 2>/dev/null | cut -d' ' -f1,2 | sed 's/ /T/' | sed 's/\..*$//')
|
local lastmod=$(stat -c %y "${file}" 2>/dev/null | cut -d' ' -f1,2 | sed 's/ /T/' | sed 's/\..*$//')
|
||||||
|
|
||||||
echo " <url>" >> ${sitemap_blog}
|
echo " <url>" >> ${sitemap_blog}
|
||||||
@ -997,7 +997,7 @@ function _sitemap() {
|
|||||||
for file in "${page_files[@]}"
|
for file in "${page_files[@]}"
|
||||||
do
|
do
|
||||||
# Remove www_root from the path and prepend site_url
|
# Remove www_root from the path and prepend site_url
|
||||||
local url="${site_url}${file#$www_root}"
|
local url="${site_url}/${file#$www_root}"
|
||||||
local lastmod=$(stat -c %y "${file}" 2>/dev/null | cut -d' ' -f1,2 | sed 's/ /T/' | sed 's/\..*$//')
|
local lastmod=$(stat -c %y "${file}" 2>/dev/null | cut -d' ' -f1,2 | sed 's/ /T/' | sed 's/\..*$//')
|
||||||
|
|
||||||
echo " <url>" >> ${sitemap_page}
|
echo " <url>" >> ${sitemap_page}
|
||||||
@ -1026,7 +1026,7 @@ function _sitemap() {
|
|||||||
for file in "${xml_files[@]}"
|
for file in "${xml_files[@]}"
|
||||||
do
|
do
|
||||||
# Remove www_root from the path and prepend site_url
|
# Remove www_root from the path and prepend site_url
|
||||||
local url="${site_url}${file#$www_root}"
|
local url="${site_url}/${file#$www_root}"
|
||||||
local lastmod=$(stat -c %y "${file}" 2>/dev/null | cut -d' ' -f1,2 | sed 's/ /T/' | sed 's/\..*$//')
|
local lastmod=$(stat -c %y "${file}" 2>/dev/null | cut -d' ' -f1,2 | sed 's/ /T/' | sed 's/\..*$//')
|
||||||
|
|
||||||
echo " <url>" >> ${sitemap_file}
|
echo " <url>" >> ${sitemap_file}
|
||||||
|
Loading…
Reference in New Issue
Block a user