Page 1 of 1

what is URL Alias?

Posted: Fri Oct 05, 2012 12:40 am
by arbaz_1006
what is the use of URL Alias?
in my site URL's display like www.domain.com/?controller=home
how should we display it like www.domain.com/home

whenever i enable URL alias, the URL's display how i wanted but the links wont work
any solution??

Re: what is URL Alias?

Posted: Fri Oct 05, 2012 2:03 am
by leo
Is the apache modul mod_rewrite loaded on that server?
Go to admin/system/server info and under configuration, apache2handler in line Loaded Modules is should be displayed.

Re: what is URL Alias?

Posted: Fri Oct 05, 2012 3:54 am
by arbaz_1006
my server API is : CGI/FastCGI
and in my server info its not showing what u told.
what should i do now?

Re: what is URL Alias?

Posted: Fri Oct 05, 2012 11:17 am
by leo
Any log message?

Re: what is URL Alias?

Posted: Fri Oct 05, 2012 11:20 am
by arbaz_1006
No logs :(

Re: what is URL Alias?

Posted: Fri Oct 05, 2012 11:36 pm
by leo
If that is the case, please contact your service provider to get more info.
I hope this works fine:
viewtopic.php?f=22&t=689
so that problem is with the httpd.conf.

Re: what is URL Alias?

Posted: Sun Oct 07, 2012 11:03 am
by arbaz_1006
Okay I will do it and let you know:)
I want to know what kind of problems arises if we use
The cart switching off the URL aliases?

Re: what is URL Alias?

Posted: Sun Oct 07, 2012 2:26 pm
by leo
In the .htaccess file change
RewriteRule ^(.*) index.php/$1 [L,QSA]
to
RewriteRule ^(.*) index.php?$1 [L,QSA]

Re: what is URL Alias?

Posted: Mon Oct 08, 2012 2:41 am
by arbaz_1006
i am using windows package of hosting so, can you please tell me what should i make an request to our hosting service providers so that it works fine?

Re: what is URL Alias?

Posted: Mon Oct 08, 2012 11:41 am
by Brent
They have to enable mod rewrite in apache http config file for it to function.
Either that, or move to a Linux/Unix server if they have that option. It would be more secure.