我是wordpress(我的版本是3.9.2)开发的新手,在我的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]
RewriteRule ^product_view/(.*)$ product_view/?section=Products&alias=$1&%{QUERY_STRING}
</IfModule>`
所以当有人点击我的链接时
http://mysite/product_view/data
我希望mysite将网址重写为
http://mysite/product_view/?section=Products&alias=data
不行,请帮帮我 最好的问候 兰卡