5
私はすべてのwww.site.com/hello to www.site.com/index.php?p=hello
を書き換えしようとしていると、それは(.htaccess
で)次のコードで動作します:のRewriteCond
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]*)/?$ /index.php?p=$1
しかし、私はそうwww.site.com/?p=hello
作業古いリンクを維持したいwww.site.com/?p=hello
私は、次のコードを試してみたが、それは
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(\?p=)
RewriteRule ^([^/]*)/?$ /index.php?p=$1