Forum Moderators: phranque
#1 .htaccess, RewriteRule is disabled
RewriteEngine on
#RewriteRule ^alice\.html$ bob.html
Links:
http://255.255.255.255/~account/alice.html [Ok]
http://255.255.255.255/~account/bob.html [Ok]
#2 .htaccess, RewriteRule is enabled
RewriteEngine on
RewriteRule ^alice\.html$ bob.html
Links:
http://255.255.255.255/~account/alice.html [404 Not Found]
http://255.255.255.255/~account/bob.html [Ok]
I need to modify the apache conf and the .htaccess
at the moment the only way to access my site is by typing:
http://www.example.com/~account_name/public/
what i need is to access it without typing the account_name:
http://www.example.com/public/
http://<dedicated_ip>/~account_name/ www.mydomain.com http://www.mydomain.com/cgi-sys/defaultwebpage.cgi for some unknown reason for me, but when i type http://www.mydomain.com/~account_name/ my website is shown. www.mydomain.com to view the website that is in http://www.mydomain.com/~account_name/ without the need to add ~account_name at the end of the URL neither been redirected to cgi-sys page. [edited by: ac1982 at 6:51 am (utc) on Aug 29, 2012]
I checked after a a couple of hours and when I typed www.example.com
I am redirected to http://www.example.com/cgi-sys/defaultwebpage.cgi for some unknown reason for me
but when i type http://www.example.com/~account_name/ my website is shown.