に書き直す必要があり
www.example.com/folder/35467/title.html
ます
www.example.com/folder/?id=35467
id
データベースから取得されtitle
ます。htaccessファイルを「フォルダ」に入れます。
に書き直す必要があり
www.example.com/folder/35467/title.html
ます
www.example.com/folder/?id=35467
id
データベースから取得されtitle
ます。htaccessファイルを「フォルダ」に入れます。
.htaccess
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
############################################
## you can put here your script root folder
## path relative to web root
RewriteBase /
############################################
## never rewrite for existing files, directories and links
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
############################################
## rewrite everything else to index.php
RewriteRule .* index.php [L]
</IfModule>
index.php
list (,,$id,$title) = explode('/', $_SERVER['REQUEST_URI']);
$link = 'www.example.com/folder/?id='. $id;