尝试将以下内容添加到站点根目录中的 .htaccess 文件中。
.htaccess
RewriteEngine on RewriteBase / RewriteCond %{REQUEST_URI} ^/site/(\w+)$ [NC] #if site/myfolder/anyFolderName exists RewriteCond %{DOCUMENT_ROOT}/site/myfolder/%1 -d #rewrite request to site/myfolder/anyfolder RewriteRule ^ site/myfolder/%1 [L,NC]
Try adding the following to the .htaccess file in the root directory of your site.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
尝试将以下内容添加到站点根目录中的
.htaccess
文件中。Try adding the following to the
.htaccess
file in the root directory of your site.