-1

I have a project on app engine that I control locally. The thing I want to do is install a MyBB forum on my php app. My default url is https://plains.cc but I want the forums to be at https://plains.cc/forums/index.php. How can I do this?

Diogo A.
  • 147
  • 6
PLAINS
  • 3
  • 3

1 Answers1

0

You can use the htacess configuration file to redirect the traffic to a different path, as shown in these articles [1][2][3].

However, you can use rewriting rules instead, as shown in this Stack Overflow post. The apache config file for the virtual host is usually located at “/etc/apache2/apache2.conf” or depending on how MyBB set things up, in a separate file within /etc/apache2 that is included in the main apache2.conf file.

Let me know if it helps.

Diogo A.
  • 147
  • 6