我正在尝试创建一个.htaccess
文件,该文件将:
/api/
开头的URL并加载/api/index.php
/api/user
,/api/product
,/api/product/1
... /style.css
,/script.js
... /index.html
/
,/login
,/user
,/product
,/product/1
... 我知道根目录中的文件可以正常显示,并且没有/api
的路由会加载index.html
,但是我不知道api路径。
这是我的.htaccess
文件:
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteCond %{REQUEST_URI} /api
#RewriteRule ^/api/ index.php [QSA,L]
#RewriteRule ^/api$ /api/index.php [QSA,L]
#RewriteRule ^api api/index.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>
注释行尝试失败