linux中提示The requested URL *** was not found on this server

來源:互聯網
上載者:User

本文章來給大家介紹關於在使用linux中提示The requested URL *** was not found on this server錯誤解決辦法,有需要瞭解的朋友可進入參考。

因為之前別人在伺服器上裝了nginx,我裝了apache後,訪問出現The requested URL *** was not found on this server,查看了下/etc/httpd/conf/httpd.conf,發現原因:

DocumentRoot指向錯誤,於是修改之,另外確保你的apache開啟了rewrite_module模組

Apache的rewrite_module模組,支援.htaccess


rewrite_module沒開啟,開啟過程如下:

centos的設定檔放在:

 代碼如下 複製代碼
/etc/httpd/conf/httpd.conf

開啟檔案找到:

 代碼如下 複製代碼

LoadModule rewrite_module modules/mod_rewrite.so

將前面"#"去掉,如果不存在則添加上句。

如果你的網站是根目錄的話:找到

 代碼如下 複製代碼

<Directory />
  Options FollowSymLinks
  AllowOverride None 
</Directory>

將上面的None改為All

如果你的網站不在根目錄,設定如下:

 代碼如下 複製代碼

<Directory "/var/www/html/my_directory"> 

Order allow,deny
Allow from all
AllowOverride All
</Directory>

OK,然後重啟伺服器,service httpd restart ,這樣.htaccess就可以使用了

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.