<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Magento Expert</title>
	<atom:link href="https://www.the-mage-expert.com/tag/url/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.the-mage-expert.com</link>
	<description>Your Magento Commerce Expert</description>
	<lastBuildDate>Tue, 24 Jan 2023 09:37:24 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.6</generator>
	<item>
		<title>Reindex URL rewrites</title>
		<link>https://www.the-mage-expert.com/1161/magento2-reindex-url-rewrites/</link>
		<comments>https://www.the-mage-expert.com/1161/magento2-reindex-url-rewrites/#comments</comments>
		<pubDate>Fri, 29 Jun 2018 06:54:29 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[Magento 2]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=1161</guid>
		<description><![CDATA[The URL rewrites of Magento 2 will not be reindexed when rebuilding the index via command line. I recommend using https://github.com/olegkoval/magento2-regenerate_url_rewrites to include the reindex of URL rewrites on the shell. This Magento 2 extensions allows for reindexing all URL&#8230;]]></description>
				<content:encoded><![CDATA[<p>The URL rewrites of Magento 2 will not be reindexed when rebuilding the index via command line. I recommend using <a href="https://github.com/olegkoval/magento2-regenerate_url_rewrites" target="_blank">https://github.com/olegkoval/magento2-regenerate_url_rewrites</a> to include the reindex of URL rewrites on the shell. This Magento 2 extensions allows for reindexing all URL rewrites.</p>
<p>After installation, run these 2 commands:</p><pre class="crayon-plain-tag">php bin/magento cache:flush
php bin/magento cache:clean</pre><p>Now just reindex as usual, the rewrites will be included.</p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/1161/magento2-reindex-url-rewrites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing slash at the end of a URL</title>
		<link>https://www.the-mage-expert.com/486/magento-removing-slash-end-of-url/</link>
		<comments>https://www.the-mage-expert.com/486/magento-removing-slash-end-of-url/#comments</comments>
		<pubDate>Fri, 01 Nov 2013 10:26:53 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=486</guid>
		<description><![CDATA[Open your .htaccess file in the Magento root directory and add those lines: [crayon-6a7abfeb5b8f7/]]]></description>
				<content:encoded><![CDATA[<p>Open your .htaccess file in the Magento root directory and add those lines:</p>
<p></p><pre class="crayon-plain-tag">RewriteCond %{request_method} ^GET$
RewriteCond %{REQUEST_URI} ^(.+)/$
RewriteRule ^(.+)$ %1 [L,R=301]</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/486/magento-removing-slash-end-of-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting URL parameters</title>
		<link>https://www.the-mage-expert.com/385/magento-getting-url-parameters/</link>
		<comments>https://www.the-mage-expert.com/385/magento-getting-url-parameters/#comments</comments>
		<pubDate>Thu, 25 Jul 2013 14:38:15 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=385</guid>
		<description><![CDATA[To get a Magento URL parameter, use the following code: [crayon-6a7abfeb5bb6a/]]]></description>
				<content:encoded><![CDATA[<p>To get a Magento URL parameter, use the following code:</p>
<p></p><pre class="crayon-plain-tag">// URL: http://localhost/project/index.php/admin/sales_order/index/id/123
$id = Mage::app()-&gt;getRequest()-&gt;getParam('id');</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/385/magento-getting-url-parameters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting a category URL using the category id</title>
		<link>https://www.the-mage-expert.com/378/magento-getting-category-url-with-category-id/</link>
		<comments>https://www.the-mage-expert.com/378/magento-getting-category-url-with-category-id/#comments</comments>
		<pubDate>Thu, 25 Jul 2013 08:57:08 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=378</guid>
		<description><![CDATA[To get a categories URL by category id, use the following code: [crayon-6a7abfeb5c02b/]]]></description>
				<content:encoded><![CDATA[<p>To get a categories URL by category id, use the following code:</p>
<p></p><pre class="crayon-plain-tag">$categoryId = 55;
$url = Mage::getModel(&quot;catalog/category&quot;)-&gt;load($categoryId)-&gt;getUrl();</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/378/magento-getting-category-url-with-category-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the current URL</title>
		<link>https://www.the-mage-expert.com/374/magento-getting-current-url/</link>
		<comments>https://www.the-mage-expert.com/374/magento-getting-current-url/#comments</comments>
		<pubDate>Mon, 15 Jul 2013 08:22:27 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=374</guid>
		<description><![CDATA[Use the following code to get the current URL in Magento: [crayon-6a7abfeb5c42f/]]]></description>
				<content:encoded><![CDATA[<p>Use the following code to get the current URL in Magento:</p>
<p></p><pre class="crayon-plain-tag">$currentUrl = $this-&gt;helper('core/url')-&gt;getCurrentUrl();</pre><p> </p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/374/magento-getting-current-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the URL of a product image and display the image</title>
		<link>https://www.the-mage-expert.com/370/magento-getting-url-of-product-image-and-display-image/</link>
		<comments>https://www.the-mage-expert.com/370/magento-getting-url-of-product-image-and-display-image/#comments</comments>
		<pubDate>Fri, 12 Jul 2013 09:14:29 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=370</guid>
		<description><![CDATA[Use the following code to get a Magento products URL and to display the image on a tempate page: [crayon-6a7abfeb5c7ae/]]]></description>
				<content:encoded><![CDATA[<p>Use the following code to get a Magento products URL and to display the image on a tempate page:</p>
<p></p><pre class="crayon-plain-tag">&lt;img src=&quot;&lt;?php echo $_product-&gt;getImageUrl(); ?&gt;&quot; alt=&quot;&lt;?php echo $_product-&gt;getName();?&gt;&quot; /&gt;</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/370/magento-getting-url-of-product-image-and-display-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using skin, media, &#8230; URLs in blocks or CMS pages</title>
		<link>https://www.the-mage-expert.com/104/magento-skin-media-urls-in-blocks-cms-pages/</link>
		<comments>https://www.the-mage-expert.com/104/magento-skin-media-urls-in-blocks-cms-pages/#comments</comments>
		<pubDate>Mon, 25 Mar 2013 12:19:16 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=104</guid>
		<description><![CDATA[The following 4 examples show how to get the skin, media, base and store URLs in a MAgento block or CMS page: skin: {{skin url=&#8217;images/sampleimage.jpg&#8217;}} media: {{media url=&#8217;/sampleimage.jpg&#8217;}} base: {{base url=&#8217;yourstore/mypage.html&#8217;}} store: {{store url=&#8217;mypage.html&#8217;}}]]></description>
				<content:encoded><![CDATA[<p>The following 4 examples show how to get the skin, media, base and store URLs in a MAgento block or CMS page:</p>
<p>skin: {{skin url=&#8217;images/sampleimage.jpg&#8217;}}<br />
media: {{media url=&#8217;/sampleimage.jpg&#8217;}}<br />
base: {{base url=&#8217;yourstore/mypage.html&#8217;}}<br />
store: {{store url=&#8217;mypage.html&#8217;}}</p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/104/magento-skin-media-urls-in-blocks-cms-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
