0
我如何可以重定向,使用.htaccess
,呼籲page.php?id=
到index.php?page=
但保留網址在用戶的瀏覽器page.php?id=
?我認爲wordpress使用這個。如何「page.php文件」重定向到「的index.php?頁=」
我如何可以重定向,使用.htaccess
,呼籲page.php?id=
到index.php?page=
但保留網址在用戶的瀏覽器page.php?id=
?我認爲wordpress使用這個。如何「page.php文件」重定向到「的index.php?頁=」
那麼爲什麼你不使用wordpress .htaccess
?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
編輯:
而且在index.php
:
<?php
$id = 1;
if ($_GET['id'] and @intval($_GET['id']))
$id = $_GET['id'];
echo 'Current id: ' . $id;
當您訪問page.php?id=4
輸出爲Current id: 4
。 Wordpress不使用重定向。它只是將所有網址改寫爲index.php
,此腳本包含所有必需的文件。
這只是從index.php?page =''刪除index.php並留下了'?page ='。 – Romeo
這可能會幫助你:http://stackoverflow.com/questions/11959853/redirect-subdomain-using-htaccess-and-keep-url –