我将我的应用程序放在Apache的子文件夹“子文件夹”中,因此我可以使用以下网址:https://myserver.com/subfolder/#/v2/login代替https://myserver.com/#/v2/login
我正在使用以下目录配置:
Alias /subfolder /srv/apache2/htdocs/subfolder
<Directory /srv/apache2/htdocs/subfolder>
Order allow,deny
Allow from all
Options All
AllowOverride All
Require all granted
</Directory>
问题是,现在我有很多断开的链接,而且找不到显示错误的资源,例如:
https://myserver.com/app/v2/anotherfolder/anotherpage.html
Failed to load resource: the server responded with a status of 404 (Not Found)
请注意,错误中的此类链接在路径中不包含“子文件夹”。
我错过了什么?
答案 0 :(得分:0)
在您的网站根目录.htaccess(即htdocs/
)中使用此规则:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(?!subfolder/).* subfolder/$0 [L,NC]
答案 1 :(得分:0)
您可以尝试在“子文件夹”目录的公共目录中的.htaccess文件中输入以下内容。我假设您已经完成了必须在虚拟主机文件中完成的更改。
RewriteBase /subfolder (just below RewriteEngine On)