我想自定义wordpress的404伪静态htaccess定义,非原版的wordpress .htaccess
- # BEGIN WordPress
- ErrorDocument 404 /404.html
- RewriteEngine On
- RewriteBase /
- RewriteRule ^archives/.*$ /index.php [L]
- RewriteRule ^feed.*$ /index.php [L]
- RewriteRule ^page/.*$ /index.php [L]
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- # END WordPress
其中RewriteRule ^
archives/.*$ /index.php [L] 这个archives我怎么改成变量URL呢
比如:/
manhua/123456.html /
xiaoshuo/123456.html,用上面的伪静态,怎么修改
archives不知道哪个大佬知道,菜鸟懵逼中