0
我有一個.htaccess任務,我無法完成。我需要以.html /重定向到.html結尾的所有網頁。所有其他頁面必須以斜線結尾。最後,這些規則不得影響/ adminstrator/page。任何人都可以幫助我嗎?從.html刪除尾部斜槓,但添加尾部斜槓到其他所有內容
謝謝。
我有一個.htaccess任務,我無法完成。我需要以.html /重定向到.html結尾的所有網頁。所有其他頁面必須以斜線結尾。最後,這些規則不得影響/ adminstrator/page。任何人都可以幫助我嗎?從.html刪除尾部斜槓,但添加尾部斜槓到其他所有內容
謝謝。
剛剛找到了一個解決方案。謝謝:)
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^.]+).html/ http://somedomain.com/$1\.html [R=301,L]
RewriteCond %{REQUEST_URI} !^/administrator/
RewriteCond %{REQUEST_URI} !\.(php|html?|jpg|gif)$
RewriteRule ^(.*)([^/])$ http://%{HTTP_HOST}/$1$2/ [L,R=301]
RewriteCond %{REQUEST_URI} !^/administrator/
RewriteCond %{REQUEST_FILENAME} !-d
之前不能這樣做,因爲需要排除/管理者/排除兩次