Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change of Magento contacts page URL

Tags:

magento

How can I change Magento contacts page URL from /contacts to contact-us.html?

Thanks for any advice.

like image 323
Blazo Avatar asked May 05 '11 10:05

Blazo


People also ask

How do I change the contact us page layout in Magento?

Customize the Contact Us Page in Magento 2Navigate to Content > Blocks and find the Contact Us Info block. 2. Add the changes you need to the content of the page and Save the block. After you apply the changes, the Contact Us page will be different based on your configurations.

What are URL rewrites in Magento?

What is URL Rewrite? URL Rewrite is one of the most awesome tools by Magento 2 that allows you to edit any URL linking to a product, category or CMS page. After enabling the rewrite, the visitors who access the old link will be navigated to the new address to get more information.


1 Answers

The 'proper' way would be to create a small module similar to the below;

app/etc/modules/Organisation_Module.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Organisation_Module>
            <active>true</active>
            <codePool>local</codePool>
        </Organisation_Module>
    </modules>
</config> 

and...

app/code/local/Organisation/Module/etc/config.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Organisation_Module>
            <version>0.0.1</version>
        </Organisation_Module>
    </modules>
    <frontend>
        <routers>
            <contacts>
                <use>standard</use>
                <args>
                    <module>Mage_Contacts</module>
                    <frontName>contact-us.html</frontName>
                </args>
            </contacts>
        </routers>
    </frontend>
</config>

Upload your files, clear your cache and you're good to go.

like image 91
Dan Norris Avatar answered Sep 22 '22 13:09

Dan Norris