0

我正在尝试从中获取我的网址:

hxxp://m.newsite.com/index.php?id=12345

对此:

hxxp://m.newsite.com/12345

我遇到的问题是我有一个共享主机帐户并且我正在托管一个新域,因此上述带有子域的 URL 在技术上可以从以下位置访问:

hxxp://www.originalsite.com/newsite.com/mobile

我已经为 mod_rewrite 尝试了各种不同的组合,但恐怕我只是不在那里!帮助!

4

1 回答 1

0

把它放在/newsite.com/mobile目录的htaccess中

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^m\.newsite\.com$
RewriteRule ^([0-9]+)$ index.php?id=$1 [L]
于 2012-05-22T08:09:50.443 回答