标签: php
说我跑
http://mymaindomain.com/helloworld/somescript.php
我想要http://mymaindomain.com/helloworld/
http://mymaindomain.com/helloworld/
我该怎么做?
答案 0 :(得分:1)
请你检查我的答案?
https://stackoverflow.com/a/41407858/3821823
你也可以像这样定义const变量:
const BASE_URL = 'http://mymaindomain.com/helloworld/'; // or define('BASE_URL', 'http://mymaindomain.com/helloworld/'); echo BASE_URL;