문제

How can I modify the default folder directory in Apache?

I want to modify the directory(which shows when a folder's index.ext or default.ext pages aren't found) by appending some HTML to it, is this possible in .htaccess? If not, what're the alternatives?

index directory

도움이 되었습니까?

해결책

You can place this .htaccess in your document root:

DirectoryIndex index.html index.php /listing.php

This will search for a index.html or index.php in the accessed folder. If both aren't existing it calls listing php from the document root (note the / in front) as fallback. Use this file to code the directory listing on your own. This way you have fully customized index pages.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top