我有一台服务器,但无权访问vhost设置。我正在使用Symfony4。索引文件位于std::vector<int> user_array ();
user_array.reserve(array_size);
std::cout << "Fill your array with integer values. Press 'Enter' after each: " << std::endl;
for(int i = 0; i < array_size; ++i)
{
int x;
std::cin >> x;
user_array.push_back(x);
}
目录中。我想要:
第一点在根目录中的public
中,其余部分在公共目录中的.htaccess
内部。
当我在网址中输入.htaccess
时,会将我重定向到没有www
但在网址中包含www
的版本。
public
被重定向到https://www.my_domain.com
。
任何想法为何?
根目录.htaccess:
https://my_domain.com/public
.htaccess公共目录:
RewriteEngine on
# remove /public from url
RewriteCond %{REQUEST_URI} !public/
RewriteRule (.*) /public/$1 [L]