如何在 opencart 中更改新 html 页面的 url?
How to change the url of a new html page in opencart?
我在 opencart 2.0.3.1 的根目录中创建了一个新的 Php
页面,例如 test.php .
现在的地址是:my_domain.com/test.php
,但是我希望它变成:my_domain.com/test
。
我该怎么做?
您可以做的是:
你现在拥有的:
Root
index.php
test.php
您可以做的是:
Root
index.php
test
index.php
网站总是会寻找索引文件。
如果您创建一个新文件夹(在本例中为“test”)并在其中放置一个索引,您的页面地址将如下所示:my_domain.com/test
此外,如果您想要 index.php 中的 link 进行测试。你可以简单地做:
<a href="test/">Link</a>
我在 opencart 2.0.3.1 的根目录中创建了一个新的 Php
页面,例如 test.php .
现在的地址是:my_domain.com/test.php
,但是我希望它变成:my_domain.com/test
。
我该怎么做?
您可以做的是:
你现在拥有的:
Root
index.php
test.php
您可以做的是:
Root
index.php
test
index.php
网站总是会寻找索引文件。
如果您创建一个新文件夹(在本例中为“test”)并在其中放置一个索引,您的页面地址将如下所示:my_domain.com/test
此外,如果您想要 index.php 中的 link 进行测试。你可以简单地做:
<a href="test/">Link</a>