ubuntu下apache rewrite的設定

來源:互聯網
上載者:User

ubuntu下apache rewrite的設定 解決方案一 這兩天把自己的網站移到了Ubuntu 9.04底下,要弄偽靜態頁面,需要啟用Apache的rewrite模組。在其他的Linux版本中,這個問題似乎要容易解決一些,但是在ubuntu下,就有點不大一樣。  需要通過命令,或者自己重新建立個軟串連才可以。 命令是:sudo a2enmod rewrite 軟串連是:sudo ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load   因為Ubuntu下,Apache的設定檔及目錄結構不大一樣,所以mods-avalilable下的是可用的模組,而真正啟用了的模組是在mods-enable目錄底下的。所以自己建立軟串連也可以實現啟用rewrite模組。  除 了啟用rewrite外,還有地方需要修改的,如果你的網站只有一個,那修改/etc/apache2/sites-available /default這個檔案就可以,如果你是虛擬機器主機的,那就修改自己的/etc/apache2/sites-available /www.orioner.net.conf(我的虛擬機器主機設定檔)這個檔案了。  <Directory /> Options FollowSymLinks AllowOverride None(修改為AllowOverride All) </Directory> <Directory "/var/orioner"> Options Indexes FollowSymLinks MultiViews AllowOverride None(修改為AllowOverride All) Order allow,deny allow from all </Directory> 最後,別忘了使用下列指令來重啟 Apache: sudo /etc/init.d/apache2 restart. 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.