我想使用htaccess将URL如www.domain.com/profile.php?id=1设置为www.domain.com/1/和www.domain.com/1/contact或www.domain .com / 1 / gallery。
您想帮我吗?
答案 0 :(得分:0)
这是从URL隐藏index.php的基本规则。将其放在您的根.htaccess文件中。
必须使用PHP启用mod_rewrite,这将适用于高于5.2.6的PHP版本。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]