Hi,
The question comes down to what you want to see at the root URL, http://yourdomain.com/
Based on my understanding, you probably have two options:
1) you can choose to direct to a default project
If there is only one project, you can make it jump to that one using the default_project setting. In this case, the user will be redirected to http://yourdomain.com/xyz (xyz being the default project name)
/opt/tactic/tactic_data/config/tactic-conf.xml
2) a separate project with custom view
You can create a separate project with a custom view that the user will see when going to the root URL.
If you want the user to see nothing, you can just create an empty project with a blank page or a company logo. Keep in mind that this would make the root URL basically do nothing.
Hope this helps.
The question comes down to what you want to see at the root URL, http://yourdomain.com/
Based on my understanding, you probably have two options:
1) you can choose to direct to a default project
If there is only one project, you can make it jump to that one using the default_project setting. In this case, the user will be redirected to http://yourdomain.com/xyz (xyz being the default project name)
/opt/tactic/tactic_data/config/tactic-conf.xml
Code:
<install>
...
...
<default_project>xyz</default_project>
...
...
</install>
2) a separate project with custom view
You can create a separate project with a custom view that the user will see when going to the root URL.
If you want the user to see nothing, you can just create an empty project with a blank page or a company logo. Keep in mind that this would make the root URL basically do nothing.
Hope this helps.