当我进入我的站点和浏览其他站点时,我得到一个参数 more: etc .php?p=pagename&id=1
我想隐藏 .dk 之后的所有内容
我试过了:
RewriteEngine On
RewriteRule ^([a-zA-Z0-9]+)$ index.php?p=$1 [L,QSA]
RewriteRule ^([a-zA-Z0-9]+)/$ index.php?p=$1 [L,QSA]
RewriteRule ^/index.php$ http://www.madsweb.dk/ [R,NC,L]
但这似乎不起作用。
谁能帮我吗?