2017-04-26 16 views
0

を動作しない、私はの.htaccess GETクエリ文字列は、

http://localhost/manual/index.php?type=post&post=$ 

http://localhost/manual/$ 

からURLをリダイレクトしようとする私のファイルの.htaccessは

RewriteEngine On 
RewriteBase /manual/ 
RewriteCond %{REQUEST_FILENAME} !-f # Existing File 
RewriteCond %{REQUEST_FILENAME} !-d # Existing Directory 
RewriteRule . /manual/index.php? [L] 

RewriteRule ^([^/]*)\/$ type=post&post=$1 [L] 

しかしもいただきました間違った作業、ヘルプです、私はまだhtaccessを作成するために理解していないので、重複して申し訳ありません。

答えて

0

あなたは/manual/.htaccessに以下のルールを使用することができます。

RewriteEngine on 

RewriteBase /manual/ 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.+)$ index.php?type=post&post=$1 [L] 
関連する問題