0

这应该很容易,但实际上并非如此。

我想做到这一点:

  • http://finaldomain.com / PAGENAME是我想使用的网址。
  • http:// subdomain.generaldomain .com/index.php?/static-parameter/PAGENAME 是服务器渲染页面所需要的

我正在寻找带有 htaccess 的镜像。不是重定向。这可以做到吗?

提前致谢, 迪德里克

4

1 回答 1

0

.htaccess在您的文档根目录中尝试此操作。

RewriteEngine on
RewriteBase /

RewriteCond %{HTTP_HOST} ^(www\.)?finaldomain\.com$ [NC]
RewriteRule ^(.*)$ http://subdomain.generaldomain.com/index.php?/static-parameter/$1 [L]

这将重定向

http://www.finaldomain.com/file.php => to =>
http://subdomain.generaldomain.com/index.php?/static-parameter/file.php

http://finaldomain.com/subfolder/file.php => to =>
http://subdomain.generaldomain.com/index.php?/static-parameter/subfolder/file.php
于 2013-06-19T16:21:28.097 回答