URL rewriting in PHP without htaccess

后端 未结 5 775
面向向阳花
面向向阳花 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:11

    Try this

    www.example.com/file?q=name

    to

    www.example.com/name (better than www.example.com/file/name)

    Open your .htaccess from your project root folder and add this code

    Options +FollowSymLinks
    
    RewriteEngine On
    RewriteRule \.(js|css|jpe?g|png|gif)$ - [L]
    
    
    RewriteRule "^([ \w-]+)/?$" /file?q=$1 [L,QSA]
    

    This solves your problem. See the post how to rewrite URL in .htaccess

提交回复
热议问题