我有像这样的.htaccess代码;
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^ index.php [L]
我可以将这样的网址(localhost / site / page)路由到index.php,但我不能将这样的网址(localhost / userprofiles / {username})路由到index.php。我该怎么做?
(没有名为userprofiles的文件目录。当像这样的url时,所有文件在控制台上的这个文件目录中看起来像文件。这就是为什么我的代码在这个页面中不起作用)
我事先感谢你的帮助。