1
我想爲mysql數據庫中的每個用戶創建一個通配子子域。該子域的作品,但頁面加載沒有相關的文件(CSS,JS)。創建通配符子域不起作用
用戶列表頁面:
website.com/user/index.php
用戶頁面:
website.com/user/userpage/user.php?username=john
這是我重寫代碼:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.website.com/user/user.php$
RewriteCond %{HTTP_HOST} ^(.*?).website.com$
RewriteRule (.*) user.php?username=%1
有什麼毛病我重寫代碼? 。謝謝:d
編輯
忘了一兩件事,這是我的通配符* .website.com目錄:
public_html/user
感謝:d