0

我需要在文件扩展名之后直接做一个技巧

http://www.your-name.dk/Whatever-url.php-Whatever 301-->http://www.your-name.dk/Whatever.php

我试过这个但没用

RedirectMatch permanent (.*).php.* htt*://www.your-name.dk/$1.php
4

1 回答 1

1

启用 mod_rewrite 和 .htacess,然后将此代码添加到 DOCUMENT_ROOT 下的 .htaccess 中:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^([^-]+)-[^.]+\.php-\1$ $1.php [L,NC,R=301]
于 2012-04-16T17:57:07.280 回答