我似乎无法弄清楚
我想将对/ post / example-title的所有调用重定向到根目录中的post.php文件,同时保留url。会使用example-title来从数据库中检索数据。
我的舱口目前看起来像这样
DirectoryIndex index.php
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
答案 0 :(得分:0)
您可以使用:
DirectoryIndex index.php
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^./]+)/[^.]*$ $1.php [NC,L]