我有 2 个主页。它是这样工作的,
<html>
<body>
<div id='menu'></div>
<div id='content'><?PHP require("content.php"); ?></div>
</body>
</html>
然后,content.php 从 url 中拉出“页面”,并通过“好页面”的 url 进行检查。如果没有,则有默认值。无论如何,典型的 url 看起来像这样
- /index.php?page=user&id=1
- /?page=group&id=3
我试图让它看起来像这样
- /用户/1
- /组/3
这就是我的 .htaccess 文件,它不能 100% 工作。它拉出正确的页面,但似乎没有上传 css 文件。它在主目录的 /css/ 中作为索引和内容。
编辑
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)/(.*)$ /index.php?page=$1&id=$2 [L]
如果可能的话,我希望应用程序具有可扩展性。
谢谢!