我的网站上有一个这样的 URL -
http://www.mydomain.com/profiles/centers/index.php?code=2507&name=Tharanga+Higher+Educational+Institute#page=art-section
当它转到上面的页面时,我需要在浏览器的地址栏上将上面的 url 显示为友好的 url。
我期待的网址是这样的 -
http://mydomain.com/centers/Tharanga-Higher-Educational-Institute#page=art-section
到目前为止,此代码在我的 .htaccess 文件中
# Enable Rewriting
RewriteEngine on
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /profiles/centers/index.php\?code=([0-9]+)&name=([^&]+)&?([^\ ]+)
RewriteRule ^profiles/centers/index\.php /%1/?%2 [R=301,L,NE]
但是这段代码对我不起作用。希望有人能帮助我。谢谢你。