我们的主要网站(www.example.com)在内部以IIS/ASP.NET服务器为主机,但我们最近创建了一个博客,外部以Linux/Apache配置(www.exampleblog.com)为主机。
目前,我们设法将博客绘制到我们主要网站的子域(blog.example.com),但我们希望将其绘制到子目录(www.example.com/blog)上。
这是可能的,如果是的话,如何做到这一点?
我们的主要网站(www.example.com)在内部以IIS/ASP.NET服务器为主机,但我们最近创建了一个博客,外部以Linux/Apache配置(www.exampleblog.com)为主机。
目前,我们设法将博客绘制到我们主要网站的子域(blog.example.com),但我们希望将其绘制到子目录(www.example.com/blog)上。
这是可能的,如果是的话,如何做到这一点?
但让我想想你的博客是在PHP上开发的。
您主要需要做以下工作:
嗯,就是这样。
注意: 不知道您在博客中运行的平台是什么, 但主要的想法是配置窗口框来运行另一个网站, 如果是php, 你会找到很多这方面的例子 。
如果您在博客网站后面有另一个网络服务器( Apache), 唯一的办法就是从 www.example.com/blog
转到另一个网络服务器。 您也可以使用包含博客网站( 位于另一个地址下) 的框架, 使用户无法在其浏览器的地址栏中看到另一个地址 。
In my webpages I have references to js and images as such: "../../Content/Images/"Filename" In my code if I reference a file as above, it doesnt work so i have to write: "c:/miscfiles/"filename" 1-...
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...
I m looking for best practices here. Sorry. I know it s subjective, but there are a lot of smart people here, so there ought to be some "very good" ways of doing this. I have a custom object called ...
I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...
i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...
For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?
I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!