我需要帮助将以下 URL:重写为
http://example.com:7071/hotels_index/1
:
http://example.com/hotels_index_1.json
到目前为止,我有:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/?([^/]+)_([^/]+)_([0-9]+)\.json$ http://example.com:7071/$1_$2/$3 [L]
我需要帮助将以下 URL:重写为
http://example.com:7071/hotels_index/1
:
http://example.com/hotels_index_1.json
到目前为止,我有:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/?([^/]+)_([^/]+)_([0-9]+)\.json$ http://example.com:7071/$1_$2/$3 [L]