需要帮助.htaccess - 无法得到我想要的东西......
丑陋的网址 http://www.onnlist.com/punerealestate.jsp?section=realestate&file=pune
想要更好的网址(例如) - mysite / realestate / pune / punerealestate.html
这是我最新的 .htacess文件 - 当然这不起作用 -
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^products/([^/]+)/([^/]+).html /punerealestate.jsp?section=$1&file=$2 [L]
RewriteRule ^aboutus.jsp/$ /pages/about.html [L]
编辑:我刚试过Fabian的解决方案。我将3行复制到我网站根目录下的.htaccess文件中,但它仍然无效。有什么想法吗?
答案 0 :(得分:0)
以下示例将重写 的 http://www.onnlist.com/bla1/bla2/punerealestate.html 强> 至 的 http://www.onnlist.com/punerealestate.jsp?section=bla1&file=bla2 强>
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([^/]+)/([^/]+)/punerealestate.html /punerealestate.jsp?section=$1&file=$2 [L]