我在这里有这个RewriteRule:
RewriteRule ^TWI$ https://www.paypal.com
但是它不起作用,基本上我想做的是有一个这样的页面,https://example.com/TWI重定向到Paypal的网站。我究竟做错了什么?这是我的其他规则:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule ^TWI$ https://www.paypal.com
</IfModule>
答案 0 :(得分:0)
我更改了规则的顺序,请检查:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^TWI$ https://www.paypal.com [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>