0

有人可以帮我写这个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]

非常感谢你的帮助!

丹尼

4

1 回答 1

0

对于永久重定向,请尝试以下操作:

redirect 301 /^[0-9]{5}$ http://www.yoursite.com/de/$1
于 2013-07-28T20:46:54.970 回答