Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 appfog 上托管我的 wordpress,但 appfog 还不允许通配符子域。我决定在 heroku 上创建一个应用程序并将 htaccess 放在那里,因此任何通配符子域都将重写为 appfog。
如何使用放置在 heroku cedar 上的 htaccess 制作 URL sample-post.apps1.herokuapp.com/subtitle/... --> apps1.appfog.com/sample-post/subtitle/...?
尝试:
RewriteEngine On RewriteCond %{HTTP_HOST} ^([^.]+)\.apps1\.herokuapp\.com$ [NC] RewriteRule ^(.*)$ http://apps1.appfog.com/%1/$1 [L,R]
如果您不希望浏览器地址栏中的 URL 更改(通过重定向,R方括号中的标志),请尝试更改R为P(代理)。Apache 需要加载 mod_proxy。
R
P