国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Ubuntu > 正文

Ubuntu14.14開啟ApacheRewrite功能的方法詳解

2024-06-28 14:32:55
字體:
來源:轉載
供稿:網友

Ubuntu上開啟Apache Rewrite功能的方法
發布時間:2012-09-11編輯:腳本學堂
本文介紹ubuntn系統中開啟apache的urlrewrite功能的方法。


在Windows上開啟Apache的urlRewrite非常簡單,因為apache的用戶配置都是放在http.conf文件中,要開啟Rewrite功能,只需要把該文件中LoadModule rewrite_module modules/mod_rewrite.so前面的注視去掉,然后重啟APACHE即可。

但在Ubuntu上則有所不同,默認Apache包配置是按照目錄和文件存放的,/etc/apache2目錄包含conf.d、mods-available、mods-enabled、sites-available、sites-enabled文件夾,apache2.conf、envvars、httpd.conf(用戶配置文件)、magic、ports.conf(APACHE端口配置)配置文件。

一、Ubuntu默認未開啟Rewrite支持

其中,mods-available是指可用的模塊,mods-enabled是指當前已經默認加載的模塊。httpd.conf默認是個空文件,因為大部分加載工作都被分散到不同的配置文件里,總體加載配置文件是apache2.conf,其部分內容如下:

 

# Include module configuration:Include /etc/apache2/mods-enabled/*.loadInclude /etc/apache2/mods-enabled/*.conf# Include all the user configurations:Include /etc/apache2/httpd.conf# Include ports listingInclude /etc/apache2/ports.conf......# Include generic snippets of statementsInclude /etc/apache2/conf.d/# Include the virtual host configurations:Include /etc/apache2/sites-enabled/

  


從這些語句可以看出,加載工作已經分散到不同的配置文件,這樣看起來似乎更為合理,管理起來也非常方便。下面看一下如何開啟Rewrite模塊,當用戶需使用301重定向、偽靜態等Rewrite功能時,一般都習慣于使用.htaccess文件配置,比如下面的301重定向:

 

Options +FollowSymLinksRewriteEngine onRewriteCond %{HTTP_HOST} ^abc.com [NC]RewriteRule ^(.*)$ http://www.shouce.ren/$1 [L,R=301]RewriteCond %{HTTP_HOST} ^www.abc.com[NC]RewriteRule ^(.*)$ http://www.shouce.ren/$1 [L,R=301]

  



配置完成后,使用/etc/init.d/apache2 reload命令加載生效,這時,如果未開啟Rewrite功能,則會出現500錯誤(瀏覽器顯示),查看LOG錯誤如下:
[Sun Jan 30 02:41:29 2011] [alert] [client 12.34.56.78] /srv/www/shouce.ren/public_html/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
說明需要手動開啟Rewrite模塊加載,加載開啟過程如下。

二、手動開啟加載Rewrite

1、使用終端工具連接服務器,輸入管理員帳號和密碼

2、執行加載Rewrite模塊:
a2enmod rewrite
執行后,會提示OK和重啟Apache命令(/etc/init.d/apache2 restart)。

3、參照上文的目錄配置,做個啟動鏈接(下次啟動自動加載):

 

ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load

  

執行后會在mods-available目錄下創建一個快捷方式,連接到mods-enabled下rewrite模塊。

4、重啟apache:


/etc/init.d/apache2 restart
三、單一缺省網站配置及重定向參考

如果只有一個網站,且默認使用apache分配的默認www文件夾(沒有創建單獨的配置文件,比如/sites-availbe/shouce.ren),可能還需要修改/etc/apache2/sites-available/default這個文件,把其中的AllowOverride None修改為AllowOverride All,因為default配置里還默認關閉.htaccess重載,打開后.htaccess才會生效。

<VirtualHost 12.34.56.78:80>ServerAdmin webmaster@localhostDocumentRoot /var/www<Directory />Options FollowSymLinksAllowOverride None</Directory><Directory /var/www/>Options Indexes FollowSymLinks MultiViewsAllowOverride NoneOrder allow,denyallow from all</Directory>ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/<Directory "/usr/lib/cgi-bin">AllowOverride NoneOptions +ExecCGI -MultiViews +SymLinksIfOwnerMatchOrder allow,denyAllow from all</Directory>ErrorLog /var/log/apache2/error.log# Possible values include: debug, info, notice, warn, error, crit,# alert, emerg.LogLevel warnCustomLog /var/log/apache2/access.log combinedAlias /doc/ "/usr/share/doc/"<Directory "/usr/share/doc/">Options Indexes MultiViews FollowSymLinksAllowOverride NoneOrder deny,allowDeny from allAllow from 127.0.0.0/255.0.0.0 ::1/128</Directory></VirtualHost>

  

配置完成后,重啟 Apache,命令:/etc/init.d/apache2 restart

 


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 大埔区| 潼关县| 古浪县| 招远市| 察雅县| 巴彦淖尔市| 图片| 鱼台县| 正镶白旗| 汶川县| 临汾市| 南康市| 兖州市| 团风县| 金川县| 宜宾县| 南昌县| 泽州县| 峨眉山市| 上林县| 新建县| 丰都县| 珠海市| 古交市| 黄山市| 南昌市| 南投市| 台东县| 托里县| 崇文区| 同仁县| 弥渡县| 合水县| 剑阁县| 金山区| 金堂县| 江油市| 肇庆市| 龙山县| 当阳市| 潮州市|