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.
我有一个网站,它基本上是一本书(它连接到数据库)。用户可以阅读以下章节:http ://examplebook.com/20 。我遇到的问题是我不想为书中的所有章节创建文件夹,而是从 url 中提取章节编号,然后连接到数据库并显示书籍页面。如果我没有每章的文件夹,它只会重定向并显示未找到。我看到一些具有此功能的网站,所以我假设它是可能的。任何帮助将不胜感激。
亲切的问候,
耐嚼。
你的意思是这样的?
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ /index.php [L]
那是在文档根目录中的 htaccess 文件中。