从http://localhost/我想访问http://localhost/1.php
如何制作,以便我可以在不更改网址的情况下访问浏览器中的1.php文件?
答案 0 :(得分:1)
在DirectoryIndex 1.php
文件中使用.htaccess
答案 1 :(得分:0)
您可以使用AJAX获取不同PHP文件的内容并在着陆页上显示
答案 2 :(得分:0)
这是一个简单的例子: index.html页面
server <- function(input, output) {
output$dfTable <- renderUI({ myDf })
}
ui <- fluidPage(
mainPanel(tableOutput("dfTable"))
)
shinyApp(ui = ui, server = server)
假设您有内容
的page1.html<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Ajax example</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script src="https://code.jquery.com/jquery-1.11.3.min.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$("#page1").click(function(){
$('#result').load('page1.html');
});
$("#page2").click(function(){
$('#result').load('page2.html');
});
//and so on
});
</script>
</head>
<body>
<ul>
<li><a id="page1" href="#">One</a></li>
<li><a id="page2" href="#">Two</a></li>
<li><a id="page3" href="#">Three</a></li>
</ul>
<div id="result" style="clear:both;">
</div>
</body>
</html>
点击链接“one”将使用page1.html的内容填充div,依此类推
使用这种类型的实现,您应该在没有标题和元数据的情况下生成其他页面。