清潔URL僅適用於index.php,但不適用於其他頁面(探索和頂部)。 我想要「乾淨」的參數是'genre'(例如:genre = pop)。這是網站:swiftlymusic.com,並託管在「1(1and1 oneandone)」服務器上。
的.htaccess:清理URL - .htaccess
ErrorDocument 404 /04.html
RewriteBase/
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^log$ logs [L]
RewriteRule ^([a-zA-Z0-9]+)$ ?genre=$1 [L]
RewriteRule ^([a-zA-Z0-9]+)/$ ?genre=$1 [L]
RewriteRule ^explore/([a-zA-Z0-9_-]+)$ explore.php?genre=$1 [L]
RewriteRule ^top/([a-zA-Z0-9_-]+)$ top.php?genre=$1 [L]
AddDefaultCharset UTF-8
我嘗試過,但沒有改變... –
我能看到的唯一的另一件事是逃離。用'\ .',看我編輯的答案。 – sdexp
仍然沒有變化,我添加了附近的流派導航欄爲您查看完整的網址的結果。 –