我想创建像WordPress平台那样的动态url和内容,但是我做错了。请检查我的代码:
<?php
$pages = array("story1", "story2", "story3");
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>This is my page title.</title>
<link rel="canonical" href="http://www.xyz1.com/kids-english-<?php
echo $pages[1];?>.php"/>
<!-- here the url is creating but gives error 404 -->
</head>
<body>
<p>Hello, <?php echo $pages[1];?></p><br>
<a href="http://www.xyz1.com/kids-english-<?php echo $pages[1];?>.php"><?php echo $pages[2];?></a>
<!-- here the second url is creating but gives error 404 -->
</body>
</html>
现在我想从数据库中获取内容并要加载somefile.php
这是我的第二个问题。我通过foreach循环创建url,但是如何将所有内容加载到somefile.php,以及一个somefile.php如何处理动态创建的所有不同url和不同内容。我在这里很困惑。
欢迎您提出建议。 谢谢。
答案 0 :(得分:0)
像其他所有好的编码项目一样,Well ..应用程序(如Wordpress,Shopware等)都基于MVC设计方案构建。
您可以使用Symfony之类的框架,也可以构建自己的路由机制。
总而言之,就像您提到自己的想法时一样,有些棘手。