1

好的,我需要从这里更改所有董事会网址:

http://dream-portal.net/board_65.0/

对此:

http://dream-portal.net/board_65/

基本上,我需要去掉 URL 末尾的 .0,就在最后一个 / 字符之前。

我怎样才能通过.htaccess 做到这一点?

目前在我的 .htaccess 文件中使用它:

RewriteEngine on
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
4

1 回答 1

1
RewriteEngine on
RewriteBase /

RewriteRule ^(board_[0-9]+)\.0/$ $1 [L,R=302]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
于 2013-01-06T14:35:56.677 回答