我創建了一個網站,CMS製作了簡單的版本1.11.11,並使用了listit2模塊版本1.4.1。CMSMS htaccess重寫ListIt2模塊
現在這個模塊只能以這種形式生成URL:
http://example.com/listit2/item-alias/page-id
現在,我不在乎這是用來顯示正確的模板頁面ID
但由於這是一個多語種的網站我想listit2揹着我(虛擬)語言文件夾apear:
http://example.com/lang/listit2/item-alias/page-id
,所以我CMSMS一般重寫規則之前添加2條重寫線在我的htaccess文件, 。
RewriteCond %{HTTP_HOST} ^lang/listit2 [NC] RewriteRule ^lang/listit2(.*)$ listit2$1 # Rewrites urls in the form of /parent/child/ # but only rewrites if the requested URL is not a file or directory RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?page=$1 [QSA]
,但似乎並沒有工作,因爲它生成的摘要概述,而不是像http://example.com/listit2/page-id
怎麼樣,我可以解決這個內容的詳細信息頁面?