I just purchased a domain from godaddy. I updated the Name Servers on GoDaddy and added the domain to byethosting16. When people go to my website, they see:
mywebsite.cm now when they click on a link, they see mywebsite.byethosting16.cm\myfirstpost.
How do I go about removing the byethosting16 so when they click on a post, they see mywebsite.cm/myfirstpost
Your help is greatly appreciated, I have been taking feedback from everyone here and trying to utilize everything I learned.
Update: After doing a ton of google searching, I figured it out. Man I love Google. For those that are experiencing a similar situation, I had to edit the .htaccess file. In my case, I did not have a .htaccess that was showing up so I had to create a new .htaccess and add in the following information:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
I then saved it and uploaded it to my site and everything seemed to work the way I wanted it. I hope this information helps others out.
mywebsite.cm now when they click on a link, they see mywebsite.byethosting16.cm\myfirstpost.
How do I go about removing the byethosting16 so when they click on a post, they see mywebsite.cm/myfirstpost
Your help is greatly appreciated, I have been taking feedback from everyone here and trying to utilize everything I learned.
Update: After doing a ton of google searching, I figured it out. Man I love Google. For those that are experiencing a similar situation, I had to edit the .htaccess file. In my case, I did not have a .htaccess that was showing up so I had to create a new .htaccess and add in the following information:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
I then saved it and uploaded it to my site and everything seemed to work the way I wanted it. I hope this information helps others out.
Last edited: