Apache 新增自定義vhost 目錄,等其他配置
1、在 Apache 下找到 httpd.conf ,這個檔案中找到預設 Include conf/vhosts.conf ,
在這個之後新增 Include conf/self_vhosts/*.conf
我的配置:
Include conf/vhosts.conf
Include conf/self_vhosts/*.conf
2、 Apache 新增 404 跳轉到首頁 在 vhost 檔案中新增如下
主要程式碼: ErrorDocument 404 http://www.test.com
<VirtualHost *:80>
DocumentRoot "E:/web/bj_tour_en/A206/"
ServerName www.test.com
ErrorDocument 404 http://www.test.com
</VirtualHost>
2-02 、 強制 Apache 返回一個404狀態碼 (其他http狀態碼)
Redirect 404 / #訪問根目錄顯示404
Redirect 500 / #訪問根目錄顯示500
<Directory /data/www>
Deny from all #403 拒絕訪問
#ErrorDocument 404 /test/404.html #404 重定向
#ErrorDocument 404 "This is 404 page" #400 顯示錯誤字串
</Directory>
相關文章
- 自定義目錄
- Python日誌記錄中新增自定義屬性Python
- java使用sshd 實現sftp 自定義顯示目錄JavaFTP
- 【Spring Boot 使用記錄】kafka自動配置和自定義配置Spring BootKafka
- 遷移WSL Ubuntu到其他目錄Ubuntu
- 為Jupyter Notebook 新增目錄
- ASP.NET Core 2.0 自定義 _ViewStart 和 _ViewImports 的目錄位置ASP.NETViewImport
- VUE - 配置根目錄(用@代表src目錄)Vue
- apache關閉目錄瀏覽功能Apache
- Laravel 新增自定義助手函式Laravel函式
- AUTOCAD——新增自定義填充圖案
- Azure AD(六)新增自定義域名
- Android 端如何新增自定義表情Android
- 給Product新增自定義屬性
- 配置 NFS 共享目錄NFS
- Apache虛擬目錄配置及vue-cli反向代理的設定方法ApacheVue
- Apache Phoenix自定義函式(UDF)實踐Apache函式
- Apache Linkis自定義變數實踐分享Apache變數
- apache中埠與目錄的關係Apache
- robotframework appiumLibrary新增自定義關鍵字FrameworkAPP
- Google Cloud IAM中新增自定義域名GoCloud
- ubuntu下OpenLDAP新增自定義屬性UbuntuLDA
- 公眾號新增自定義連結
- php 自定義配置檔案PHP
- _008_SpringBoot_自定義配置Spring Boot
- 打包策略 自定義打包配置
- Git對新增目錄的處理Git
- 配置vuter的根目錄
- centos systemctl的配置目錄CentOS
- Apache Maven Assembly自定義打包外掛的使用ApacheMaven
- spark:自定義分割槽,自定義排序,spark與jdbc,廣播變數等Spark排序JDBC變數
- 如何自行給指定的SAP OData服務新增自定義日誌記錄功能
- 使用ADD_CUSTOM_COMMAND 新增自定義命令
- iOS 新增自定義的字型 Fonts provided by applicationiOSIDEAPP
- jQuery Validate新增自定義驗證規則jQuery
- 如何在React Native中新增自定義字型React Native自定義字型
- 『手撕Vue-CLI』新增自定義指令Vue
- apisix-dashboard上新增自定義外掛API