I need to change my vendor url
From
mysite.com/vendor.php?dispatch=auth.login_form&return_url=vendor.php
To
mysite.com/vendor-login
Can someone provide me solution?
Thanks In Advance
You can go to Webiste > SEO > SEO Rules and add the URL there.
Kind regards,
You can rename the vendor.php to aything you consider is better but you need to keep .php extension
config.local.php
PS: vendor.php is not relevant for SEO, is not indexed, is only for vendors to manage their orders/users/products ...
Related
We have a requirement to implement redirection rule from one category to home page. can we achieve this by writing category redirection rule using impex or what could be the solution ?
Thanks so much in advance.
Regards,
Jagdish
We can redirect in categoryPageController. Check for the category and redirect to Home.
I'm trying to learn how to rewrite URL's within htaccess files.
If anyone can give me some good links that would be brilliant.
I'm trying to aim to rewrite this:
http://www.domainname.co.uk/news/newsSingle.php?ID=9
to this:
http://www.domainname.co.uk/news/category-name/post-name.php
I have the category-name & post-name within the database for each matching ID.
Any help would be great thanks!
you can take a look at
9lessons.info
Media Temple
Stack Overflow .htaccess
Hope these help you find the answer.
Does anyone know if there is an .htaccess rule to redirect from somthing like this...
XXX/dodge/604-jeep-hard-start-cold
to...
XXX/dodge/jeep-hard-start-cold
Basically wondering if there is some sort a variable that will remove the number from URL's.
All URL's have different numbers, so it cant just be the 604 getting a redirect.
It is a Joomla site, and numbers refer to article #.
Thanks for any help !
Sounds like you need to configure Joomla to not add the article number to the url of the article. You can turn on Search Enging Friendly urls in the Global Configuration.
I need an .htaccess rule for the following criteria. I am working in codeIgniter
I need to change:
http://project.com/projectname/controller_folder/sub_folder_in_controller
to:
http://project.com/projectname/sub_folder_in_controller
So if any thing starts with /controller_folder/sub_folder_in_controller, I need it to be converted to /sub_folder_in_controller.
Please help, thanks in advance
-Vamsi
By default, codeigniter allows you to organize your controllers in one-level subfolders.
Take a look in the controller user guide.
I'm pretty inexperienced with .htaccess so please bear with me.
I have a domain - "http://www.exampletest.com"
which redirects to a folder at a different domain where I have hosting i.e:
"http://www.differenturl.com/exampletest"
Is there an easy mod_rewrite rule where I could have anything at "http://www.differenturl.com/exampletest" show up as "http://www.exampletest.com?" An example would be:
"http://www.differenturl.com/exampletest/user.php" -> "http://www.exampletest.com/user.php"
Any assistance is greatly appreciated. I assume this easy so sorry to ask such a basic question.
Thanks
You say "rewrite, not redirect", so no, there isn't a simple way to do this. The only way to do what you ask would be to have a "reverse proxy" running on www.exampletest.com that fetches content from "www.differenturl.com/exampletest/". That isn't something you can do with mod_rewrite.
If I have understood correctly, following code might do:
RewriteRule exampletest/(.*)$ http://www.exampletest.com/$1 [R=301,L]
Please note that you add this line in the .htaccess file placed on differenturl.com server.
Hope that helps.
Cheers