I want to change billing directory in URL

From Kolmisoft Wiki
Jump to navigationJump to search

If you want to change billing directory in URL:

Billing.png

Go to /home/mor/config/environment.rb file and

Web_Dir = Rails.env.to_s == 'production' ? "/billing" : 

change to

Web_Dir = Rails.env.to_s == 'production' ? "/new_dir_name" : 

NOTE new_dir_name has to be your chosen name

Then

mv /var/www/html/billing /var/www/html/new_dir_name



And edit /etc/httpd/conf.d/m2.conf file by changing

RailsBaseURI /billing

to

RailsBaseURI /new_dir_name



Make

service httpd restart

and your new_dir_name will appear in URL.