我在使用自定义Wordpress htaccess文件时遇到了一些问题。我想从域之后的所有包含数字的URL进行简单的重定向,例如:
http://example.com/123 -> to http://example.com
而且,我的第二个问题几乎相同,但对于1个特定的4个字母的URL,例如:
http://example.com/4554 -> to http://example.com/
but http://example.com/4555 (other 4-letter nubmer should fail)
我已经尝试了很多东西,例如:
RewriteRule ^[0-9]{3}$ http://example.com [R=301,L]
但它不起作用。 通常的Wordpress htaccess文件:
# 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
非常感谢您的帮助。
答案 0 :(得分:1)
您可以使用:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^(\d{3}|4554)/?$ / [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress