The wbTeamPro system uses two different request urls, one for the client area and one for the admin area. Both are named wbteampro.php, which is used throughout the system for link building and cannot be changed. You can however use a URL rewrite rule in the APACHE environment to mask the wbteampro.php filename in the URL, allowing your setup to masquerade using any filename of your choosing. To do this you will need to perform the following updates, which for this example are using "myprojects.php" as the new filename:
- Create or Update your .htaccess file in your whmcs root folder. Add the following lines to the file, and change "myprojects" to the name of your choosing:
{whmcs}/.htaccess
# Rename wbTeamPro.php
RewriteEngine On
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{REQUEST_URI} ^/wbteampro\.php.*
RewriteRule (.*) /myprojects.php [R=301,L] - Create the new php file that will "wrap" the existing wbteampro.php file in your whmcs root folder. Add the following lines to the wrapper file:
{whmcs}/myprojects.php
<?php
include('wbteampro.php');
http://www.youwebsite.com/myprojects.php