跳转到主要内容
baseball 提交于 11 December 2013

您好: XAMPP 架站:htdocs內有多個資料夾(網站),如 WEB1 我使用 IMCE  +  CKEditor 當我於EDITOR編輯時,使用IMCE 按鈕加入一張圖片,他的HTML是 <img  src="/WEB1/sites/default/files/01.jpg" /> 若是我備份,移到另一個資料夾WEB2時 ,該圖片仍是 <img  src="/WEB1/sites/default/files/01.jpg" /> 除非我將它改為 <img  src="./sites/default/files/01.jpg" /> 這樣才可看到圖片。 請問,有辦法讓IMCE插入圖片時, 針對 根目錄,他是用 <img  src="./sites/default/files/01.jpg" /> 帶入嗎? 我看過 IMCE模組內的設定,USER1 中的Directories <root>/. 這是預設值,拿掉 【.】 ,該筆資料會不見! 但這,又好像不是 設定根目錄樣式 的設定。

Drupal 版本

您好:

謝謝您的幫忙.

不過想再先請問一下:

1.若是 我在WIN 環境 +XAMPP

然後 C:\xampp\htdocs\ 下 有多個WEB SITE ,如WEB1 ,WEB2...

這樣也適用嗎?

serverName 127.0.0.1

要改為 serverName 127.0.0.1\WEB1 嗎?

 

2.若沒有實際的DOMNAME , durpal7.dev 名稱 隨便取,它只是用來做對應的嗎?

 

謝謝!

 

您好:

我 參考您的做法,再SRVER 上 的httpd.conf 最後面 加上

<virtualhost *>
    serverName serverName1.dev
    DocumentRoot "C:\xampp\htdocs\ptnew2"
</virtualhost>
 
SERVER “C:\Windows\System32\drivers\etc\hosts 加上
serverName1.dev 127.0.0.1
 
重開APACHE,但卻出現
Bad request!

Your browser (or proxy) sent a request that this server could not understand.

If you think this is a server error, please contact the webmaster.

Error 400

localhost
2013/12/16 ¤W¤È 08:27:26
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1
另外,這樣加 前面還是會有<img  src="/WEB1/sites/default/files/01.jpg" /> 的
/WEB1/出現 吧??

另外,我發現

若我啟動 CLEAN URLS (簡潔網址),

則無法使用<img src="./sites/default/files/01.jpg"> ,

只能用 <img src="/web1/sites/default/files/01.jpg">

 

;若停用(簡潔網址),則可以直接用 <img src="./sites/default/files/01.jpg">

WHY?