Internal Server Error: Having trouble with mod_rewrite in .htaccess
Internal Server Error: Having trouble with mod_rewrite in .htaccess
我的URL是这样的:
http://example.com/Folder/index.php?city=Berlin&id=1
我想把它变成:
http://example.com/Berlin/1
使用 Generate It! 我得到这个代码:
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$ /Folder/index.php?city=&id= [L]
但是在我的 .htaccess 文件中添加它并尝试打开时 http://example.com/Berlin/1
我收到以下错误:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/2.2.14 (Ubuntu) Server at example.com Port 80
我做错了什么?从 小时 开始,我一直在尝试让它工作,但没有成功。
我找到了解决方案:
我在 .htaccess
:
中使用这个
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)/id/([^/]*)$ /Folder/index.php?city=&title=&id= [L]
更改此 link:
http://example.com/Folder/index.php?id=566&city=Berlin&title=this_is_the_websites_title
至:
http://example.com/Berlin/this_is_the_websites_title/id/566
我的URL是这样的:
http://example.com/Folder/index.php?city=Berlin&id=1
我想把它变成:
http://example.com/Berlin/1
使用 Generate It! 我得到这个代码:
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$ /Folder/index.php?city=&id= [L]
但是在我的 .htaccess 文件中添加它并尝试打开时 http://example.com/Berlin/1
我收到以下错误:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/2.2.14 (Ubuntu) Server at example.com Port 80
我做错了什么?从 小时 开始,我一直在尝试让它工作,但没有成功。
我找到了解决方案:
我在 .htaccess
:
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)/id/([^/]*)$ /Folder/index.php?city=&title=&id= [L]
更改此 link:
http://example.com/Folder/index.php?id=566&city=Berlin&title=this_is_the_websites_title
至:
http://example.com/Berlin/this_is_the_websites_title/id/566