0

我需要帮助将以下 URL:重写为 http://example.com:7071/hotels_index/1http://example.com/hotels_index_1.json

到目前为止,我有:

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/?([^/]+)_([^/]+)_([0-9]+)\.json$ http://example.com:7071/$1_$2/$3 [L]
4

1 回答 1

0

您可以使用以下代码:

Options +FollowSymlinks
RewriteEngine on

RewriteRule ^(.+?)_([0-9]+)\.json$ http://%{HTTP_HOST}:7071/$1/$2 [L,R]
于 2013-10-08T14:38:06.023 回答