有人可以帮我写这个htaccess规则吗?我在网上找不到任何相关内容:(这是我想要的流程:
1)有人打开网址site.com/12345(任意5个数字)
2) 他必须被重定向到 site.com/de/12345
我使用 Wordpress,我已经有这 2 个重定向:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# force ssl
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
非常感谢你的帮助!
丹尼