在 WordPress 中排除页面重写
Exclude a page from rewrite in WordPress
拥有适用于 Wordpress 的标准 htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
我正在使用此网站上的心愿单会员,需要注册 URL
http://www.mydomain.com.au/index.php?/register/member
上面的htaccess再改写为
http://www.mydomain.com.au/?/register/member
因此 link 不起作用。
遍地都是,但似乎找不到解决办法。
如有任何帮助,我们将不胜感激。
是心愿单会员问题。稍后更新解决。
拥有适用于 Wordpress 的标准 htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
我正在使用此网站上的心愿单会员,需要注册 URL http://www.mydomain.com.au/index.php?/register/member
上面的htaccess再改写为 http://www.mydomain.com.au/?/register/member
因此 link 不起作用。
遍地都是,但似乎找不到解决办法。
如有任何帮助,我们将不胜感激。
是心愿单会员问题。稍后更新解决。