在我的网站中,主要的 PHP 脚本名为index.php
. 所有 URI 看起来都与此类似:
index.php?section=FrontPage&l=ES_LA&view=多个
在htaccess
文件中并使用mod_rewrite
扩展名,我设法删除了.php
PHP 扩展名,因此 URI 如下所示:
index?section=FrontPage&l=ES_LA&view=multiple
我现在要做的是在路径中index.php
替换为。example
我试过使用:
RewriteRule ^example$ index.php
但是当我尝试访问example?section=FrontPage&l=ES_LA&view=multiple
服务器时返回404 Not Found 状态代码。
我怎样才能解决这个问题?