我在这里查看了很多问题,但没有找到一个完全回答我的问题的问题(可能是错误的,请随时提出我错过的答案)
你将如何编写 .htaccess 文件以将文件夹中的所有请求发送
example.com/subpage/img
到example.com/img
和example.com/subpage/js
to example.com/js
where subpage can be any text string
This is the file so far
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule (^[A-Za-z]+[\/]?) index.php?page=$1 [L]
其次,如何在最后一条规则中添加第二个参数?index.php?page=$1subpage=$2
如果这需要更具体,请告诉我