我正在使用 example.com/tool
上的目录 public_html / tool我正在尝试
example.com/tool/014n23fWEV43
但要运行
example.com/tool/index.php?code=014n23fWEV43
可以在带有.htaccess文件的工具文件夹上完成此操作
public_html/tool.htaccess
包含以下内容或类似内容?
RewriteEngine On
RewriteBase /
RewriteRule ^([a-z\-_0-9]+)/(.*)$ index.php?msgAddress=$1 [L,QSA]
RewriteBase /
是否必要?
RewriteBase /tool
没有帮助。它们都返回404 Not Found。有什么想法吗?
谢谢