.htaccess mod_rewrite带有子域的漂亮URL



我正在尝试从中获取我的URL:

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

对此:

hxxp://m.newsite.com/12345

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

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

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

把它放在/newsite.com/mobile导演的htaccess中

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^m.newsite.com$
RewriteRule ^([0-9]+)$ index.php?id=$1 [L]

相关内容

  • 没有找到相关文章

最新更新