我必须创建一个页面处理程序,该处理程序应读取URL,并根据查询字符串进行特定的操作。
我需要使用.htaccess进行一些URL重写,以将所有内容都指向执行处理的特定文件,
https://example.com/folder/page1/
https://example.com/folder/page2/
处理文件为https://example.com/folder/index.php
有什么方法可以做到这一点(可能是通过删除index.php部分)?
答案 0 :(得分:0)
尝试一下,看看这是否可以帮助您实现所需的目标。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /folder/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
以上代码仅供WordPress参考,当“ RewriteBase / folder /”文件夹名称更新为您的文件夹,并且.htaccess文件必须放置在index.php的根目录/文件夹目录中时,该代码应起作用文件已找到。