我想使用漂亮的鏈接與我的網站,但我有一個問題,路徑的CSS和JS文件。
修復路徑與漂亮的網址?
多數民衆贊成我的.htaccess文件中寫道:
RewriteEngine on
RewriteRule ^register register.php [NC,L]
RewriteRule ^login login.php [NC,L]
RewriteRule ^settings settings.php [NC,L]
RewriteRule ^logout logout.php [NC,L]
RewriteRule ^profile/([0-9a-zA-Z]+)$ profile.php?u=$1 [NC,L]
當我嘗試與變量
例如訪問profile.php這裏的問題出現:http://example.com/xxxx/profile/ashraf
在這裏,這將考慮配置文件作爲主要文件夾導入不是文件夾的樣式文件,它只是profile.php
謝謝
你的問題不清楚。你期望發生什麼?你給'/ xxxx/profile/ashraf'的路徑不符合你的任何規則(在最後一條規則中,路徑以'profile'開頭,而不是'xxxx')。請特別指出您嘗試訪問的CSS的路徑,以及您得到的任何錯誤。 – BeetleJuice
xxxx是主要路徑和配置文件是一個php文件, 我不工作的根文件我工作在xxx文件夾和htaccess文件裏面它 –
樣式路徑是xxxx/style –