我的根子都是這樣htaccess的URL點到子文件夾
根(www.example.co.uk)
- my_framework
- my_images
我想如果用戶要求example.com指向example.com/my_framework(這是與cakephp),但在網址顯示www.example.com
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.co.uk$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.example.co.uk$
RewriteCond %{REQUEST_URI} !example.co.uk/
RewriteRule ^(.*) http://www.example.co.uk/my_framework/$1 [R=301,L]
並且當用戶想要在某些頁面中看到圖像時,圖像位於my_images文件夾中,因此他們可以訪問該圖像。
而應該修改Apache的配置文件來指導你們域到my_framework文件夾。然後cakePHP將有一個公共資產文件夾,以便您的圖片進入。 –
我的應用程序圖像位於app/webroot/img中,但是我有圖像上傳器,它將我的圖像上載到mydomain/elfinder/files/images_directories。所以我需要這個mydomain/elfinder/files/images_directories圖片路徑。 – Fury