我希望能够在URL中输入以下内容:
https://mydomain.com/fork 要么 https://mydomain.com/fork/
两者都可以转到一个名为
的子文件夹https://mydomain.com/prod/fork_contents/index.html
但仍然只显示https://mydomain.com/fork(或https://mydomain.com/fork/,无论哪种方式)
我希望index.html充当root用户,这样所有的图片网址等仍然有效(它们相对于'/ prod / fork_contents /')
目前根目录中的.htaccess是:
ErrorDocument 404 /live/site_documents/document404.html
ErrorDocument 403 /live/site_documents/accessDenied.html
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d [OR]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^fork$ /fork/index.html [L,QSA]
RewriteRule ^fork/$ /fork/index.html [L,QSA]
RewriteRule ^fork/(.*)$ /prod/forklift_contents/$1 [L,QSA]
思想?
答案 0 :(得分:2)