Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のウェブサイトの拡張子は .htm で、サーバーは IIS 7 です。カスタム 404 ページをデザインしました。
web.config でカスタム 404 ページを実装する方法を教えてください。
ファイルでこれを使用しweb.configます:
web.config
<httpErrors errorMode="Custom" existingResponse="Replace"> <remove statusCode="404" /> <error statusCode="404" responseMode="ExecuteURL" path="/Errors/NotFound" /> </httpErrors>