这是我想要重写的网址。 http://360bowling.com/tournament/?tid=1&tpn=this-is-a-test
我可以重写一下吗? http://360bowling.com/tournament/this-is-a-test
我在我的.htaccess中尝试了几种组合,但没有一种可以使用
我对mod重写知之甚少,所以我主要只是猜测。
这是一个WordPress网站,因此正常的WP内容在.htaccess
中的.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^tournament/([0-9]+)/([^/]+)$ tournament/index.php?tid=$1 [NC,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress