你能帮我修一下homestack.pl页面的htaccess文件吗?我有一个问题,重定向页面homestack.pl/categories到homestack.pl/kategorie。提前谢谢。
我添加的Bug行:RedirectMatch 301 / categories / kategorie 我的结果是我有太多的重定向,页面没有打开。
Options -Indexes
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
RedirectMatch 301 /categories /kategorie
</IfModule>