我有一个问题,我不确定它在哪里。我的目标是将mainpage.php?m=5&y=2013转换为main/5/2013。我在这里寻找一些解决方案并尝试了这些标志。
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/mainpage.php$
RewriteCond %{QUERY_STRING} ^m=([0-9]{1,2})&y=([0-9]{4})$
RewriteRule ^mainpage\.php$ http://akamol.info/main/%1/%2? [QSA,L]
Options Indexes FollowSymLinks
DirectoryIndex index.php
它给了我错误
未找到
在此服务器上找不到请求的 URL /main/5/2013。
链接是
这是我的第一个选择
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/mainpage.php$
RewriteCond %{QUERY_STRING} ^m=([0-9]{1,2})&y=([0-9]{4})$
RewriteRule ^mainpage\.php$ http://akamol.info/main/%1/%2? [R=302,L]
Options Indexes FollowSymLinks
DirectoryIndex index.php
它正在建立这个链接
它给了我错误
在此服务器上找不到请求的 URL /main/5/2013。