0
我的問題是,我將整個網站移到了公共html的子文件夾中。試圖重寫URL來通過的.htaccess自動添加子文件夾,但沒有成功 這是代碼:使用.htaccess重寫URL到子文件夾
ErrorDocument 401 "Unauthorized"
ErrorDocument 403 "Forbidden"
RewriteEngine On
RewriteBase/
DirectoryIndex index.php index.cgi index.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ anb/$1 [L,QSA]
在此先感謝
[htaccess的URL的R可能的複製的RewriteBase不能很好地工作ewrite到子目錄](http://stackoverflow.com/questions/864507/htaccess-url-rewrite-to-subdirectory) –