我正在制作这个网站,我已经清理了我的网址。我在网上唯一找不到的是如何删除旧的,所以每个页面只有一个链接。
这是我的 .htaccess
RewriteBase /
RewriteCond %{HTTP_HOST} !^domain.eu$ [NC]
RewriteRule ^(.*)$ http://domain.eu/$1 [L,R=301]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.eu/$1/ [L,R=301]
RewriteRule ^secured/ - [L]
RewriteRule ^login/$ paginas/login.php
RewriteRule ^([a-zA-Z0-9]+)/$ index.php?taal=$1
RewriteRule ^([a-zA-Z0-9]+)/([a-zA-Z0-9]+)/$ index.php?taal=$1&pagina=$2
ErrorDocument 404 /paginas/error404.php
那么如何使 index.php?taal=1&pagina=2 类型的链接不可用,以便人们只能使用 domain.eu/1/2/ ?
谢谢。