重定向将目录名称添加到url

时间:2019-09-14 18:48:25

标签: .htaccess redirect

我有一台服务器,但无权访问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); } 目录中。我想要:

  • 从网址中删除公共目录
  • 从网址中删除www
  • 重定向到https

第一点在根目录中的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]

0 个答案:

没有答案