您好,登錄后才能下訂單哦!
這篇文章主要介紹“ubuntu下的php相關(guān)路徑怎么修改”的相關(guān)知識,小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“ubuntu下的php相關(guān)路徑怎么修改”文章能幫助大家解決問題。
php路徑 /usr/bin/php
phpize5 /usr/bin/phpize5
php5-fpm /usr/sbin/php5-fpm
php所有的配置文件 /etc/php5/fpm
重啟php-fpm sudo kill -USR2 `cat /var/run/php5-fpm.pid`
安裝好php和apache后,
如何將開發(fā)的目錄設(shè)置成想要的呢
默認(rèn)的開發(fā)目錄地址:/var/www
更改:sudo vim /etc/apache2/sites-available/default
將里面的兩處 /var/www 改為你相要的目錄,我的是/home/dev/www
或者建立符號鏈接,在/home/dev下:
ln -s www /var/www (注意,/home/dev 中不能存在www)
然后更改權(quán)限:sudo chmod 777 /var/www
在啟動apache2
sudo /etc/init.d/apache2 restart
OK!
可以寫一個腳本測試一下了?。?!
ubuntu10.10下修改apache2的默認(rèn)文檔目錄 默認(rèn)是在/var/www里面
sudo gedit /etc/apache2/sites-enabled/000-default
在文檔中找到 DocumentRoot 在后面修改你要放置網(wǎng)頁文件的目錄。
如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
ServerAdmin webmaster@localhost DocumentRoot /var/www/
Options FollowSymLinks AllowOverride None
Directory >
Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all
Directory > ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all
Directory > ErrorLog ${APACHE_LOG_DIR}/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined Alias /doc/ "/usr/share/doc/"
Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128
Directory >
VirtualHost >
DocumentRoot /var/www/
VirtualHost > |
最后一步是重啟apache
sudo /etc/init.d/apache2 restart
修改默認(rèn)的文檔根目錄
ubuntu默認(rèn)目錄為/var/www/html
需要修改/setc/apache2/sites-enabled/000-default.conf
DocumentRoot /var/www/XXX即可,當(dāng)然還要設(shè)置好權(quán)限,因此可以查看ubuntu權(quán)限設(shè)置
ubuntu下chmod用法(利用數(shù)字進(jìn)行權(quán)限的分配)
必備
ubuntu文件權(quán)限分為讀、寫、執(zhí)行
按照數(shù)字進(jìn)行劃分,依照二進(jìn)制分配
數(shù)字4代表讀權(quán)限——-‘r’
數(shù)字2代表寫權(quán)限——-‘w’
數(shù)字1代表執(zhí)行權(quán)限——‘x’
數(shù)字0代表無任何權(quán)限—-‘-‘
文件權(quán)限分為用戶、組用戶、其他
‘123’ ‘1’所在位代表用戶,’2’所在位代表組用戶,’3’所在位代表其他
基本命令學(xué)習(xí)
查看文件的權(quán)限
ls -ld 文件名 //查看文件的權(quán)限
ls -l //查看文件夾內(nèi)所有文件的權(quán)限
設(shè)置文件的權(quán)限
chmod 777 文件名 //7 = 1 + 2 + 4 所以文件權(quán)限為所有角色均為讀、寫、可執(zhí)行
chmod 124 文件名 //用戶為執(zhí)行權(quán)限,組用戶為寫權(quán)限,其他為讀權(quán)限
設(shè)置文件夾內(nèi)所有文件的權(quán)限
chmod -R 777 文件 //文件下的權(quán)限全部變?yōu)?
修改根目錄:
在 /etc/apache2/sites-available 中修改 000-default.conf
中的DocumentRoot /var/www/ 修改為想要的目錄
比如:DocumentRoot /var/www/html/dokuwiki
修改完后重啟:sudo /etc/init.d/apache2 restart
修改默認(rèn)網(wǎng)頁:
修改/etc/apache2/mods-available/dir.conf中的內(nèi)容
原來是:
1 2 3 |
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
IfModule > |
添加上想要的文件或路徑,優(yōu)先級是從開始往后逐次讀取(無文件就讀下一個),如添加index.php、 dokuwiki
1 2 3 |
DirectoryIndex dokuwiki index.php index.html index.cgi index.pl index.php index.xhtml index.htm
IfModule > |
關(guān)于“ubuntu下的php相關(guān)路徑怎么修改”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。