URL rewriting in PHP without htaccess

后端 未结 5 813
面向向阳花
面向向阳花 2020-11-27 18:21

Website is running on a web host where we don\'t have access to a .htaccess file. However, I want to do URL rewriting for user friendly URLs.

e.g. Origi

5条回答
  •  青春惊慌失措
    2020-11-27 19:21

    If you have an Apache server and AcceptPathInfo is enabled, then you can use the URL you wrote. A request of /file/name will then be automatically rewritten to /file with the PATH_INFO value of /name if /file is a regular file.

提交回复
热议问题