Difference between revisions of "I want to change billing directory in URL"

From Kolmisoft Wiki
Jump to navigationJump to search
(Created page with 'If you want to change billing directory in URL: <br><br> File:billing.png <br><br> Go to /home/mor/config/environment.rb file and Web_Dir = Rails.env.to_s == 'production' ?…')
 
Line 17: Line 17:
  mv /var/www/html/billing /var/www/html/new_dir_name
  mv /var/www/html/billing /var/www/html/new_dir_name
<br><br>
<br><br>
and edit /etc/httpd/conf.d/m2.conf file by changing
And edit /etc/httpd/conf.d/m2.conf file by changing


  RailsBaseURI /billing
  RailsBaseURI /billing

Revision as of 07:06, 6 August 2015

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

Than

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.