我是否需要编辑.htaccess或者我可以通过routes.php进行编辑吗?如何将旧网址重定向到新网址?
RewriteEngine On
Redirect /u/photo.php?id=12345 to /photo/12345
我目前正在使用/ u / username和photo.php?id = $作为用户而不是重定向。
谢谢。
答案 0 :(得分:0)
试试这个:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/photo/(.*)$ /u/photo.php?id=$1 [L]