1
我使用nanoc來構建一個靜態網站,它有一個用於發送郵件的PHP腳本。簡化的結構:nanoc在自動編寫號中找不到我的PHP文件
/content/index.html
/content/contact.html
/content/mail.php
然而,當我做了nanoc compile
一切都在我的輸出文件夾罰款:
index.html
contact/index.html
mail/index.php
但我不能做nanoc autocompile
時調用PHP腳本。 /contact/
作品,但/mail/
沒有。
這是我的規則文件的一部分:
route '*' do
if item.binary?
# Write item with identifier /foo/ to /foo.ext
original_filename(item)
else
# Write item with identifier /foo/ to /foo/index.extension
item.identifier + "index.#{item[:extension]}"
end
end
PHP作爲非二進制處理。有誰知道我如何才能使用autocompile
?